Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .cicd/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ pipeline {
ls
'''
}
}
}
}
}
post {
always {
Expand Down
Binary file added libstochastic_physics.a
Binary file not shown.
29 changes: 27 additions & 2 deletions unit_tests/compile_standalone.hera_gnu
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,33 @@ DEBUG=YES
source ./module-setup.sh
module purge
module use $( pwd -P )
if [ $DEBUG == 'YES' ]; then
module load modules.stoch_gnu_dbg
if [ $DEBUG == 'NO' ]; then
module use /scratch2/NCEPDEV/stmp1/role.epic/installs/gnu/modulefiles
module use /scratch2/NCEPDEV/stmp1/role.epic/installs/openmpi/modulefiles
module use /scratch2/NCEPDEV/stmp1/role.epic/spack-stack/spack-stack-1.6.0_gnu13/envs/fms-2024.01/install/modulefiles/Core
module load stack-gcc/13.3.0
module load stack-openmpi/4.1.6
module load cmake/3.23.1
module load nccmp/1.9.0.1
module load jasper/2.0.32
module load zlib/1.2.13
module load libpng/1.6.37
module load hdf5/1.14.0
module load netcdf-c/4.9.2
module load netcdf-fortran/4.6.1
module load parallelio/2.5.10
module load esmf/8.6.0
module load fms/2024.01
module load bacio/2.4.1
module load crtm/2.4.0
module load g2/3.5.1
module load g2tmpl/1.13.0
module load ip/4.3.0
module load sp/2.5.0
module load w3emc/2.10.0
module load gftl-shared/1.6.1
module load mapl/2.40.3-esmf-8.6.0
module load scotch/7.0.4
else
module load modules.stoch_gnu
fi
Expand Down
22 changes: 12 additions & 10 deletions unit_tests/input.nml
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,20 @@
lndp_type = 2
n_var_lndp = 2
n_var_spp = 5
/

&nam_sppperts
SPP_VAR_LIST: "pbl", "sfc", "mp", "rad", "gwd", "cu_deep"
SPP_MAG_LIST: 0.2, 0.2, 0.75, 0.2, 0.2
SPP_LSCALE: 150000.0, 150000.0, 150000.0, 150000.0, 150000.0
SPP_TSCALE: 21600.0, 21600.0, 21600.0, 21600.0, 21600.0
SPP_SIGTOP1: 0.1, 0.1, 0.1, 0.1, 0.1
SPP_SIGTOP2: 0.025, 0.025, 0.025, 0.025, 0.025
SPP_STDDEV_CUTOFF: 1.5, 1.5, 2.5, 1.5, 1.5
ISEED_SPP: 4, 5, 6, 7, 8
/

&nam_sppperts
iseed_spp = 4,4,4,4,4
spp_lscale = 250000.0,250000.0,250000.0,250000.0,250000.0
spp_prt_list = 0.2,0.2,0.75,0.2,0.2
spp_sigtop1 = 0.1,0.1,0.1,0.1,0.1
spp_sigtop2 = 0.025,0.025,0.025,0.025,0.025
spp_stddev_cutoff = 1.5,1.5,2.5,1.5,1.5
spp_tau = 21600.0,21600.0,21600.0,21600.0,21600.0
spp_var_list = 'pbl','sfc','mp','rad','gwd'
/

&nam_stochy
SKEBNORM=1,
SKEB_NPASS=30,
Expand All @@ -87,6 +88,7 @@
ISEED_SKEB=2,
ISEED_SPPT=3,
STOCHINI=.false.

/
&nam_sfcperts
lndp_type=2
Expand Down