Changes between Version 9 and Version 10 of 2020WP/VALID-11_clevy_OASIS_TESTCASE
- Timestamp:
- 2020-03-31T16:53:39+02:00 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
2020WP/VALID-11_clevy_OASIS_TESTCASE
v9 v10 98 98 Answer from reviewers is in the ticket #2379. 99 99 For E. Maisonnave & L. Coquart, review is successful and development can start 100 101 ==== Validation: 102 This 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: 108 nemo_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: 111 success=`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 114 This 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 100 116 == Tests 101 117