Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Improvement of testing routines #68

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion YOG_convection/SAM_consts.F90
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,10 @@ module SAM_consts_mod
! ---------------------------
integer, parameter :: input_ver_dim = 30
!! The number of cells in a SAM atmospheric column on which the neural net was trained

integer, parameter :: num_sam_cells = 30
!! number of SAM cells
integer, parameter :: sam_sounding = 48
!! SAM sounding data
! Outputs from NN are supplied at lowest 30 half-model levels for sedimentation fluxes,
! and at 29 levels for fluxes (as flux at bottom boundary is zero).
integer, parameter :: nrf = 30
Expand All @@ -97,6 +100,18 @@ module SAM_consts_mod
!! SAM timestep in seconds

!---------------------------------------------------------------------

! ---------------------------
! CAM column variables, number of cells
! ---------------------------
integer, parameter :: num_cols = 4
!! Number of columns
integer, parameter :: num_cells = 3
!! Number of cells
integer, parameter :: num_cam_cells_fine = 90
!! Number of fine CAM cells
integer, parameter :: num_cam_cells_coarse = 10
!! Number of coarse CAM cells
! Functions and Subroutines

contains
Expand Down
Loading
Loading