File tree Expand file tree Collapse file tree 11 files changed +15
-15
lines changed
Expand file tree Collapse file tree 11 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -169,10 +169,10 @@ tar -xzf wrf_simulation_CONUS12km.tar.gz
169169cd /fsx/conus_12km
170170
171171cp /opt/wrf-omp/src/run/{\
172- CAMtr_volume_mixing_ratio,\
173172 GENPARM.TBL,\
174173 HLC.TBL,\
175174 LANDUSE.TBL,\
175+ MPTABLE.TBL,\
176176 RRTM_DATA,\
177177 RRTM_DATA_DBL,\
178178 RRTMG_LW_DATA,\
@@ -209,7 +209,7 @@ export I_MPI_OFI_LIBRARY_INTERNAL=0
209209export I_MPI_OFI_PROVIDER=efa
210210
211211module purge
212- module load wrf-omp/4.4.1 -intel-2022.2.0
212+ module load wrf-omp/4.2.2 -intel-2022.2.0
213213
214214mpirun wrf.exe
215215EOF
Original file line number Diff line number Diff line change 22 "aws_region" : " us-east-1" ,
33 "parallel_cluster_version" : " 3.2.0" ,
44 "application_name" : " wrf" ,
5- "application_version" : " 4.4.1 " ,
5+ "application_version" : " 4.2.2 " ,
66 "intel_serial_number" : " " ,
77 "instance_type" : " m5zn.3xlarge" ,
88 "encrypt_boot" : " false" ,
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Here is a description of the variables and their default value:
1010| Name | Description | Type | Default | Required |
1111| -------------------------- | ------------------------------------------------ | ------- | ---------------- | -------- |
1212| application\_ name | Application name | String | wrf | no |
13- | application\_ version | WRF version | String | 4.4.1 | no |
13+ | application\_ version | WRF version | String | 4.2.2 | no |
1414| aws\_ region | AWS Region where packer will create the instance | String | us-east-1 | no |
1515| company\_ name | Company Name used as AMI name prefix | String | None | yes |
1616| encrypt\_ boot | Encrypt snaphot and AMI | Boolean | False | no |
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ PCLUSTER_VERSION=`pcluster version | yq '.version'`
109109# Retrieve WRF Image ID
110110export WRF_AMI=` aws ec2 describe-images --owners self \
111111 --query ' Images[*].{ImageId:ImageId,CreationDate:CreationDate}' \
112- --filters " Name=name,Values=*-${OS_TYPE} -parallelcluster-${PCLUSTER_VERSION} -wrf-4.4.1 -*" \
112+ --filters " Name=name,Values=*-${OS_TYPE} -parallelcluster-${PCLUSTER_VERSION} -wrf-4.2.2 -*" \
113113 --region ${AWS_REGION} \
114114 | jq -r ' sort_by(.CreationDate)[-1] | .ImageId' `
115115
Original file line number Diff line number Diff line change 1818set -e
1919
2020MODULES_PATH=" /usr/share/Modules/modulefiles"
21- HDF5_VERSION=" 1.12.1 "
21+ HDF5_VERSION=" 1.10.6 "
2222
2323HDF5_URL=" https://github.com/HDFGroup/hdf5.git"
2424
Original file line number Diff line number Diff line change 5353
5454MODULES_PATH=" /usr/share/Modules/modulefiles"
5555
56- DEPENDS_ON=" hdf5-parallel/1.12.1 pnetcdf/1.12.3 netcdf-c/4.9.0 netcdf-fortran/4.6.0 pio/2.5.8 "
56+ DEPENDS_ON=" hdf5-parallel/1.10.6 pnetcdf/1.12.2 netcdf-c/4.7.4 netcdf-fortran/4.5.3 pio/2.5.4 "
5757
5858MPAS_URL=" https://github.com/MPAS-Dev/MPAS-Model.git"
5959
Original file line number Diff line number Diff line change 1919
2020MODULES_PATH=" /usr/share/Modules/modulefiles"
2121
22- NETCDF_C_VERSION=" 4.9.0 "
23- DEPENDS_ON=" hdf5-parallel/1.12.1 pnetcdf/1.12.3 "
22+ NETCDF_C_VERSION=" 4.7.4 "
23+ DEPENDS_ON=" hdf5-parallel/1.10.6 pnetcdf/1.12.2 "
2424
2525NETCDF_C_ARCHIVE=" netcdf-c-${NETCDF_C_VERSION} .tar.gz"
2626NETCDF_C_URL=" https://codeload.github.com/Unidata/netcdf-c/tar.gz/refs/tags/v${NETCDF_C_VERSION} "
Original file line number Diff line number Diff line change 1919
2020MODULES_PATH=" /usr/share/Modules/modulefiles"
2121
22- NETCDF_FORTRAN_VERSION=" 4.6.0 "
23- DEPENDS_ON=" hdf5-parallel/1.12.1 netcdf-c/4.9.0 "
22+ NETCDF_FORTRAN_VERSION=" 4.5.3 "
23+ DEPENDS_ON=" hdf5-parallel/1.10.6 netcdf-c/4.7.4 "
2424
2525NETCDF_FORTRAN_ARCHIVE=" netcdf-fortran-${NETCDF_FORTRAN_VERSION} .tar.gz"
2626NETCDF_FORTRAN_URL=" https://codeload.github.com/Unidata/netcdf-fortran/tar.gz/refs/tags/v${NETCDF_FORTRAN_VERSION} "
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ MODULES_PATH="/usr/share/Modules/modulefiles"
2222PACKAGE_NAME=" pio"
2323
2424PACKAGE_VERSION=" 2.5.4"
25- DEPENDS_ON=" hdf5-parallel/1.12.1 pnetcdf/1.12.3 netcdf-c/4.9.0 netcdf-fortran/4.6.0 "
25+ DEPENDS_ON=" hdf5-parallel/1.10.6 pnetcdf/1.12.2 netcdf-c/4.7.4 netcdf-fortran/4.5.3 "
2626
2727PACKAGE_ARCHIVE=" ${PACKAGE_NAME}${PACKAGE_VERSION// ./ _} /${PACKAGE_NAME} -${PACKAGE_VERSION} .tar.gz"
2828PACKAGE_TAR=$( echo $PACKAGE_ARCHIVE | cut -d' /' -f2)
Original file line number Diff line number Diff line change 1919
2020MODULES_PATH=" /usr/share/Modules/modulefiles"
2121
22- PNETCDF_VERSION=" 1.12.3 "
22+ PNETCDF_VERSION=" 1.12.2 "
2323
2424PNETCDF_ARCHIVE=" pnetcdf-${PNETCDF_VERSION} .tar.gz"
2525PNETCDF_URL=" https://parallel-netcdf.github.io/Release/${PNETCDF_ARCHIVE} "
You can’t perform that action at this time.
0 commit comments