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.
ticket/1751_SIMPLIF_6_aerobulk (diff) – NEMO

Changes between Initial Version and Version 1 of ticket/1751_SIMPLIF_6_aerobulk


Ignore:
Timestamp:
2016-06-18T09:08:25+02:00 (8 years ago)
Author:
gm
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ticket/1751_SIMPLIF_6_aerobulk

    v1 v1  
     1[[PageOutline]] Last edited [[Timestamp]] 
     2 
     3'''Author''' : Gurvan Madec 
     4 
     5'''ticket''' : #1751 
     6 
     7'''Branch''' : [https://forge.ipsl.jussieu.fr/nemo/browser/branches/2016//dev_r6711_SIMPLIF_6_aerobulk ​2016/dev_r6711_SIMPLIF_6_aerobulk] 
     8 
     9'''WP2016 Action''' : SIMPLIF-6 
     10 
     11---- 
     12=== Description === 
     13Development branch related to Simplification / Enhancement 
     14 
     15Purpose: 
     16 
     17Replacement of the current 3 bulk formula packages (sbcblk_core, sbcblk_clio, sbcblk_mfs) by a single generic package, [http://aerobulk.sourceforge.net/ ​aerobulk], developed by L. Brodeau. 
     18 
     19The new package has a single interface (i.e. namelist) that gives access to the three following bulk formula: 
     20 
     21 * COARE algorithm version 3 (Fairall ''et al.'' 2003) 
     22 * NCAR algorithm (Large & Yeager 2004, 2008) (the so-called CORE bulk formula) 
     23 * ECMWF algorithm 
     24 
     25---- 
     26=== Strategy === 
     27Start from trunk at revision [https://forge.ipsl.jussieu.fr/nemo/changeset/6711 ​r6711] and from Laurent Brodeau' Aerobulk package adapted to NEMO. 
     28 
     29{{{ 
     30svn co svn://svn.code.sf.net/p/aerobulk/code/branches/NEMOGCM_trunk  
     31}}} 
     32and simply follows the instruction given in "NEMOGCM_trunk/changes.txt" : 
     33 
     34{{{ 
     35sbcblk_core => sbcblk 
     36 
     37remove mfs and clio ! 
     38 
     39sbcmod: rm CLIO, MFS 
     40     ln_blk_core => ln_blk 
     41     jp_core => jp_blk 
     42      
     43Namelist: 
     44namsbc: remove ln_blk_clio and ln_blk_mfs, change ln_blk_core to ln_blk 
     45namsbc_core => namsbc_blk 
     46 
     47}}} 
     48----