software:wrf:darwin

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
software:wrf:darwin [2024-03-29 13:58] anitasoftware:wrf:darwin [2024-04-02 14:39] (current) – [Set up WPS] anita
Line 32: Line 32:
  
 <code bash> <code bash>
-  [(it_css:traine)@login00.darwin ~]$ WRF_PREFIX=/work/it_css/sw/wrf/20210121 ## MAKE SURE THAT THIS IS CHANGED TO YOUR WORK GROUP DIRECTORY OR HOME DIRECTORY ##+  [(it_css:traine)@login00.darwin ~]$ WRF_PREFIX=$WORKDIR/sw/wrf/20210121 ## MAKE SURE THAT THIS IS CHANGED TO YOUR WORK GROUP DIRECTORY OR HOME DIRECTORY ##
   [(it_css:traine)@login00.darwin ~]$ mkdir -p "$WRF_PREFIX"   [(it_css:traine)@login00.darwin ~]$ mkdir -p "$WRF_PREFIX"
   [(it_css:traine)@login00.darwin ~]$ WRF_SRC="${WRF_PREFIX}/src"   [(it_css:traine)@login00.darwin ~]$ WRF_SRC="${WRF_PREFIX}/src"
Line 72: Line 72:
 === Install netcdf library ===  === Install netcdf library === 
 <code bash> <code bash>
-  [(it_css:traine)@login00.darwin LIBRARIES]$ tar -xf netcdf-4.1.3*+  [(it_css:traine)@login00.darwin LIBRARIES]$ tar -xf netcdf-4.1.3.tar.gz
   [(it_css:traine)@login00.darwin LIBRARIES]$ cd netcdf-4.1.3   [(it_css:traine)@login00.darwin LIBRARIES]$ cd netcdf-4.1.3
   [(it_css:traine)@login00.darwin netcdf-4.1.3]$ ./configure --prefix="$WRF_PREFIX" --disable-dap --disable-netcdf-4 --disable-shared   [(it_css:traine)@login00.darwin netcdf-4.1.3]$ ./configure --prefix="$WRF_PREFIX" --disable-dap --disable-netcdf-4 --disable-shared
Line 81: Line 81:
 === Install zlib library === === Install zlib library ===
 <code bash> <code bash>
-  [(it_css:traine)@login00.darwin LIBRARIES]$ tar -xf zlib-1.2.7.tar*+  [(it_css:traine)@login00.darwin LIBRARIES]$ tar -xf zlib-1.2.7.tar.gz
   [(it_css:traine)@login00.darwin LIBRARIES]$ cd zlib-1.2.7   [(it_css:traine)@login00.darwin LIBRARIES]$ cd zlib-1.2.7
   [(it_css:traine)@login00.darwin zlib-1.2.7]$ ./configure --prefix="$WRF_PREFIX"   [(it_css:traine)@login00.darwin zlib-1.2.7]$ ./configure --prefix="$WRF_PREFIX"
Line 90: Line 90:
 === Install libpng library === === Install libpng library ===
 <code bash> <code bash>
-  [(it_css:traine)@login00.darwin LIBRARIES]$ tar -xf libpng-1.2.50.tar*+  [(it_css:traine)@login00.darwin LIBRARIES]$ tar -xf libpng-1.2.50.tar.gz
   [(it_css:traine)@login00.darwin LIBRARIES]$ cd libpng-1.2.50   [(it_css:traine)@login00.darwin LIBRARIES]$ cd libpng-1.2.50
   [(it_css:traine)@login00.darwin libpng-1.2.50]$ ./configure --prefix="$WRF_PREFIX"   [(it_css:traine)@login00.darwin libpng-1.2.50]$ ./configure --prefix="$WRF_PREFIX"
Line 99: Line 99:
 === Install jasper library === === Install jasper library ===
 <code bash> <code bash>
-  [(it_css:traine)@login00.darwin LIBRARIES]$ tar -xf jasper-1.900.1.tar*+  [(it_css:traine)@login00.darwin LIBRARIES]$ tar -xf jasper-1.900.1.tar.gz
   [(it_css:traine)@login00.darwin LIBRARIES]$ cd jasper-1.900.1   [(it_css:traine)@login00.darwin LIBRARIES]$ cd jasper-1.900.1
   [(it_css:traine)@login00.darwin jasper-1.900.1]$ ./configure --prefix="$WRF_PREFIX"   [(it_css:traine)@login00.darwin jasper-1.900.1]$ ./configure --prefix="$WRF_PREFIX"
Line 183: Line 183:
    BYTESWAPIO      =       -convert big_endian    BYTESWAPIO      =       -convert big_endian
    RECORDLENGTH    =       -assume byterecl    RECORDLENGTH    =       -assume byterecl
-   FCBASEOPTS_NO_G =       -ip -fp-model precise -w -ftz -align all -fno-alias \$(FORMAT_FREE) \$(BYTESWAPIO) -xHost -fp-model fast=2 -no-heap-arrays -no-prec-div -no-prec-sqrt -fno-common  -maxvx2+   FCBASEOPTS_NO_G =       -ip -fp-model precise -w -ftz -align all -fno-alias \$(FORMAT_FREE) \$(BYTESWAPIO) -xHost -fp-model fast=2 -no-heap-arrays -no-prec-div -no-prec-sqrt -fno-common -maxvx2
   -FCBASEOPTS      =       \$(FCBASEOPTS_NO_G) \$(FCDEBUG)   -FCBASEOPTS      =       \$(FCBASEOPTS_NO_G) \$(FCDEBUG)
   +FCBASEOPTS      =       \$(FCBASEOPTS_NO_G) \$(FCDEBUG) -assume nocc_omp   +FCBASEOPTS      =       \$(FCBASEOPTS_NO_G) \$(FCDEBUG) -assume nocc_omp
Line 258: Line 258:
               description: 2020-12-10 build with Intel compilers and Open MPI               description: 2020-12-10 build with Intel compilers and Open MPI
               dependencies:               dependencies:
-                  - openmpi/4.0.2:intel+                  -  openmpi/4.0.5:intel-2020
      
    EOT    EOT
Line 266: Line 266:
 As mentioned at the top of this page these directions are based on user ''traine'' in workgroup ''it_css''. In these next directions we are going to add the WRF VALET package in the ''it_css'' workgroup directory. The location of the VALET directory might differ in your workgroup directory, or you might not yet have a VALET directory in your workgroup. If you do not have a valet directory, we suggest that you follow the directory structure we use in the ''it_css'' workgroup. Not only will it make it easier to follow these directions, but it will also make it easy to add more software packages and versions in the future. As mentioned at the top of this page these directions are based on user ''traine'' in workgroup ''it_css''. In these next directions we are going to add the WRF VALET package in the ''it_css'' workgroup directory. The location of the VALET directory might differ in your workgroup directory, or you might not yet have a VALET directory in your workgroup. If you do not have a valet directory, we suggest that you follow the directory structure we use in the ''it_css'' workgroup. Not only will it make it easier to follow these directions, but it will also make it easy to add more software packages and versions in the future.
 <code bash> <code bash>
-  [(it_css:traine)@login00.darwin ~]$ cd /work/it_css/sw+  [(it_css:traine)@login00.darwin ~]$ cd $WORKDIR/sw
   [(it_css:traine)@login00.darwin sw]$ mkdir -p valet           #This step is only required if you don't have a valet directory already created   [(it_css:traine)@login00.darwin sw]$ mkdir -p valet           #This step is only required if you don't have a valet directory already created
   [(it_css:traine)@login00.darwin sw]$ cat <<EOT > valet/wrf.vpkg_yaml   [(it_css:traine)@login00.darwin sw]$ cat <<EOT > valet/wrf.vpkg_yaml
Line 280: Line 280:
               description: 2020-12-10 build with Intel compilers and Open MPI               description: 2020-12-10 build with Intel compilers and Open MPI
               dependencies:               dependencies:
-                  - openmpi/4.0.2:intel+                  -  openmpi/4.0.5:intel-2020
      
    EOT    EOT
Line 306: Line 306:
 By default WRF and WPS are setup to run in their respected ''SRC'' directories. This is not the best idea and can cause serious problems to the WRF installation and also block the WRF software from being run by multiple people at the same time. The following steps will show you how to set up a safe environment to run WRF and WPS from a directory outside the ''SRC'' directories.  By default WRF and WPS are setup to run in their respected ''SRC'' directories. This is not the best idea and can cause serious problems to the WRF installation and also block the WRF software from being run by multiple people at the same time. The following steps will show you how to set up a safe environment to run WRF and WPS from a directory outside the ''SRC'' directories. 
 ==== Getting the example_wrf.tar file ==== ==== Getting the example_wrf.tar file ====
-By default WPS/WRF is set up to run from it's installed ''SRC'' directory. This is not ideal, so running WPS/WRF from another directory outside it's install directory is much safer and can help protect against accidental modifications or deletions of the originally installed source files. To set up the WPS and WRF to run their respected programs outside their installed ''SRC'' directory we have created an example to test called ''example_wrf.tar'' available in ''trainf'''s home directory to copy into the directory location in which you plan to download the data files and run all the WRF programs. For this demo, the ''example_wrf.tar'' file will be copied into the location ''/work/it_css/traine/wrf''.+By default WPS/WRF is set up to run from it's installed ''SRC'' directory. This is not ideal, so running WPS/WRF from another directory outside it's install directory is much safer and can help protect against accidental modifications or deletions of the originally installed source files. To set up the WPS and WRF to run their respected programs outside their installed ''SRC'' directory we have created an example to test called ''example_wrf.tar'' available in ''trainf'''s home directory to copy into the directory location in which you plan to download the data files and run all the WRF programs. For this demo, the ''example_wrf.tar'' file will be copied into the location ''$WORKDIR/traine/wrf''.
  
 <code bash>  <code bash> 
Line 345: Line 345:
   [(it_css:traine)@login00.darwin data]$ cd GFS   [(it_css:traine)@login00.darwin data]$ cd GFS
 </code> </code>
-In the ''modelDataDownload.sh'' file you will want to update the ''yyyy'', ''mm'', ''dd'', ''hh'', ''fff'', and ''model'' to match the date and model data that you are trying to download. This example used ''01/07/2021'' for the ''00Z'' run for the GFS model.+In the ''modelDataDownload.sh'' file you will want to update the ''yyyy'', ''mm'', ''dd'', ''hh'', ''fff'', and ''model'' to match the date and model data that you are trying to download. This example used ''01/07/2021'' for the ''00Z'' run for the GFS model. You also need to put in your email address from 
 <note important>This data is not longer available on NOAA's FTP website, so the example below will not work if you copy it directly and do not change the dates. </note> <note important>This data is not longer available on NOAA's FTP website, so the example below will not work if you copy it directly and do not change the dates. </note>
  
-After making the necessary changes, you can run ''modelDataDownload.sh'' script. To do this you will want to use ''sbatch'' and the ''download.qs'' script. The ''download.qs'' will run the modelDataDownload.sh script on a compute node to download all the requested model data. +After making the necessary changes, you can run ''modelDataDownload.sh'' script. To do this you will want to use ''sbatch'' and the ''download.qs'' script. The ''download.qs'' will run the ''modelDataDownload.sh'' script on a compute node to download all the requested model data. 
  
 <code bash> <code bash>
  • software/wrf/darwin.1711735080.txt.gz
  • Last modified: 2024-03-29 13:58
  • by anita