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/0932_Standalone_SBC (diff) – NEMO

Changes between Version 5 and Version 6 of ticket/0932_Standalone_SBC


Ignore:
Timestamp:
2012-03-19T16:01:30+01:00 (12 years ago)
Author:
sga
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ticket/0932_Standalone_SBC

    v5 v6  
    3131== ''' Detail of the implementation''' == 
    3232 
    33 ... 
     33A new copy of the model has to be compiled with a configuration based on ORCA2_SAS_LIM. 
     34However no namelist parameters need be changed from the settings of the previous run (except perhaps nn_date0) 
     35In this configuration, a few routines in the standard model are overriden by new versions. 
     36 
     37Routines replaced are: 
     38 
     39nemogcm.F90 
     40 
     41       This routine initialises the rest of the model and repeatedly calls the stp time stepping routine (step.F90) 
     42       Since the ocean state is not calculated all associated initialisations have been removed. 
     43 
     44step.F90 
     45 
     46       The main time stepping routine now only needs to call the sbc routine (and a few utility functions). 
     47 
     48sbcmod.F90 
     49 
     50       This has been cut down and now only calculates surface forcing and the ice model required.  New surface modules 
     51       that can function when only the surface level of the ocean state is defined can also be added (e.g. icebergs). 
     52 
     53daymod.F90 
     54 
     55       No ocean restarts are read or written (though the ice model restarts are retained), so calls to restart functions 
     56       have been removed.  This also means that the calendar cannot be controlled by time in a restart file, so the user 
     57       must make sure that nn_date0 in the model namelist is correct for his or her purposes. 
     58 
     59stpctl.F90 
     60 
     61       Since there is no free surface solver, references to it have been removed from stp_ctl. 
     62 
     63diawri.F90 
     64 
     65       All 3D data have been removed from the output.  The surface temperature, salinity and velocity components (which 
     66       have been read in) are written along with relevant forcing and ice data. 
     67 
     68One new routine has been added: 
     69 
     70sbcsas.F90 
     71 
     72       This routine initialises the input files needed for reading temperature, salinity and velocity arrays at the surface. 
     73       These filenames are supplied in namelist namsbc_sas.  Unfortunately because of limitations with the iom module, 
     74       the full 3D fields from the mean files have to be read in and interpolated in time, before using just the top level. 
     75       Since fldread is used to read in the data, Interpolation on the Fly may be used to change input data resolution. 
    3476 
    3577----