Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note: The page may be changed until the competition stats, maybe sure to follow up until the opening ceremony.

RegCM Presentation to the teams:

Widget Connector
overlayyoutube
_templatecom/atlassian/confluence/extra/widgetconnector/templates/youtube.vm
width400px
urlhttps://www.youtube.com/watch?v=wjYp4XQ-VCU
height300px

Presentation file:

View file
nameRegCM_ISC24_SCC.pdf

Building and Running example

...

To compile model executables and copy them in the bin directory, if the GNU makeprogram is in the path, it is enough to

Code Block
 make version
 make install

Sample build script on PSC:

Code Block
#!/bin/bash
source /jet/packages/oneapi/v2023.2.0/compiler/2023.2.1/env/vars.sh
source /jet/packages/oneapi/v2023.2.0//mpi/2021.10.0/env/vars.sh
export MPIFC=mpiifort
export CC=mpiicc
export FC=$MPIFC

export HDF5_DIR=<path>
export NETCDF_DIR=<path>
export PATH=$NETCDF_DIR/bin:$PATH

autoreconf -f -i
./configure --prefix=$BASE/build-$MPI

make version
make install

For the ISC24 competition, the build system is configured to make the RCEMIP model. This setting will initialize a prescribed initial vertical profile simulation with periodic boundary conditions, that will be used to evaluate the model in the ensemble Radiative-Convective Equilbrium Model Intercomparison Project. In this framework, the model is run in an idealized setting using a prescribed convection permitting configuration over an ocean box domain. The selected configuration it is very much stressing the dynamical core, the radiation package, the model micro-physics and the turbulence parameterization of the boundary layer over the ocean.

...