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.
2020WP/VALID-11_clevy_OASIS_TESTCASE (diff) – NEMO

Changes between Version 9 and Version 10 of 2020WP/VALID-11_clevy_OASIS_TESTCASE


Ignore:
Timestamp:
2020-03-31T16:53:39+02:00 (4 years ago)
Author:
emalod
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • 2020WP/VALID-11_clevy_OASIS_TESTCASE

    v9 v10  
    9898Answer from reviewers is in the ticket #2379. 
    9999For E. Maisonnave & L. Coquart, review is successful and development can start 
     100 
     101==== Validation: 
     102This toy is able to validate a simplified OASIS based coupled configuration of NEMO in such a way that: 
     103* the OASIS library can be compiled on the targeted machine (OASIS libraries available in the OASIS directory) 
     104* the OASIS library can be linked with a coupled configuration of NEMO (the NEMO executable is available in the NEMO cfg directory) and an atmosphere toy model (executable available in the tools/TOYATM directory) 
     105* an MPI MPMD system (two executables at the same time) can be launched on the machine and a successful simulation can be achieved if : 
     106 
     107* a run.stat file is produced and includes 160 iterations:  
     108nemo_iterations=`wc -l run.stat | awk {'print $1'} | grep 160`; [ -n "$nemo_iteration" ] && echo true || echo false 
     109 
     110* OASIS indicates a successful end of the run: 
     111success=`grep "SUCCESSFUL RUN" debug.root.0? | wc -l | grep 2`; [ -n "$success" ] && echo true || echo false 
     112 
     113* the sea surface temperature (Tropical Pacific region) as seen by the toy atmosphere model is close to 300.20 K and the difference between the end and the beginning values doesn't exceed 0.5 K 
     114This can be checked e.g. in the check file produced by the commands: ncks -h -v ATSSTSST -d nx,80,120 -d ny,0,10 ATSSTSST_toyatm_01.nc tropical_sst.nc ; ncwa -h -a nx,ny tropical_sst.nc check.nc 
     115 
    100116== Tests 
    101117