New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
user/techene/TP_NEMO (diff) – NEMO

Changes between Version 4 and Version 5 of user/techene/TP_NEMO


Ignore:
Timestamp:
2021-01-21T18:19:52+01:00 (3 years ago)
Author:
techene
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • user/techene/TP_NEMO

    v4 v5  
    7373 
    7474{{{#!sh 
     75# check you are in HOME you want to go to HOME/NEMO 
     76pwd 
    7577# Let's go ! 
    7678cd NEMO 
     
    8789== Run NEMO's ORCA2 configuration == 
    8890{{{#!sh 
     91# check you are in HOME/NEMO you want to go to HOME/NEMO/cfgs/ORCA2_ICE_PISCES/EXP00 
     92pwd 
    8993# Let's go ! 
    9094cd ./cfgs/ORCA2_ICE_PISCES/EXP00 
     
    97101mpirun ./nemo -np 4 
    98102}}} 
     103 
     104What happens ? namelist_cfg is the parameter file that is where you change values and input files in order to customize your run. 
     105- change the model time step 
     106- change the file frequency 
     107 
     108== Run NEMO's CANAL configuration == 
     109{{{#!sh 
     110# check you are in HOME/NEMO you want to go to HOME/NEMO/tests/CANAL/EXP00 
     111pwd 
     112# Let's go ! 
     113cd ./tests/CANAL/EXP00 
     114# Check executable presence 
     115ls -lrt 
     116# Run NEMO on 4 nodes (default) 
     117mpirun ./nemo -np 4 
     118# Run NEMO with customize parameters 
     119vi namelist_cfg 
     120mpirun ./nemo -np 4 
     121}}} 
     122 
     123What happens ? NEMO's sources (files.F90) are in src and in ./tests/CANAL/MY_SRC here we may want to change them in order to implement new features such as boundary condition shape. In that case we have to compile NEMO each time we change a source file. 
     124- change the model time step 
     125- change the file frequency