Skip to content

Commit ad5721c

Browse files
authored
Merge pull request #83 from mhuguesaws/bugfix/#82_netcdf_version
Bugfix/#82 netcdf version
2 parents 76197a9 + 4b4f111 commit ad5721c

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

apps/wrf/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,10 @@ tar -xzf wrf_simulation_CONUS12km.tar.gz
169169
cd /fsx/conus_12km
170170

171171
cp /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
209209
export I_MPI_OFI_PROVIDER=efa
210210
211211
module 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
214214
mpirun wrf.exe
215215
EOF

apps/wrf/amis/amzn2-pc-wrf/variables.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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",

apps/wrf/docs/packer_ami_variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 |

apps/wrf/scripts/setup/create_parallelcluster_config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ PCLUSTER_VERSION=`pcluster version | yq '.version'`
109109
# Retrieve WRF Image ID
110110
export 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

scripts/install/hdf5_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
set -e
1919

2020
MODULES_PATH="/usr/share/Modules/modulefiles"
21-
HDF5_VERSION="1.12.1"
21+
HDF5_VERSION="1.10.6"
2222

2323
HDF5_URL="https://github.com/HDFGroup/hdf5.git"
2424

scripts/install/mpas_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ done
5353

5454
MODULES_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

5858
MPAS_URL="https://github.com/MPAS-Dev/MPAS-Model.git"
5959

scripts/install/netcdf_c_install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ set -e
1919

2020
MODULES_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

2525
NETCDF_C_ARCHIVE="netcdf-c-${NETCDF_C_VERSION}.tar.gz"
2626
NETCDF_C_URL="https://codeload.github.com/Unidata/netcdf-c/tar.gz/refs/tags/v${NETCDF_C_VERSION}"

scripts/install/netcdf_fortran_install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ set -e
1919

2020
MODULES_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

2525
NETCDF_FORTRAN_ARCHIVE="netcdf-fortran-${NETCDF_FORTRAN_VERSION}.tar.gz"
2626
NETCDF_FORTRAN_URL="https://codeload.github.com/Unidata/netcdf-fortran/tar.gz/refs/tags/v${NETCDF_FORTRAN_VERSION}"

scripts/install/pio_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ MODULES_PATH="/usr/share/Modules/modulefiles"
2222
PACKAGE_NAME="pio"
2323

2424
PACKAGE_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

2727
PACKAGE_ARCHIVE="${PACKAGE_NAME}${PACKAGE_VERSION//./_}/${PACKAGE_NAME}-${PACKAGE_VERSION}.tar.gz"
2828
PACKAGE_TAR=$(echo $PACKAGE_ARCHIVE | cut -d'/' -f2)

scripts/install/pnetcdf_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -e
1919

2020
MODULES_PATH="/usr/share/Modules/modulefiles"
2121

22-
PNETCDF_VERSION="1.12.3"
22+
PNETCDF_VERSION="1.12.2"
2323

2424
PNETCDF_ARCHIVE="pnetcdf-${PNETCDF_VERSION}.tar.gz"
2525
PNETCDF_URL="https://parallel-netcdf.github.io/Release/${PNETCDF_ARCHIVE}"

0 commit comments

Comments
 (0)