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.
Changeset 11806 for NEMO/branches – NEMO

Changeset 11806 for NEMO/branches


Ignore:
Timestamp:
2019-10-25T17:43:44+02:00 (4 years ago)
Author:
smueller
Message:

Enabling of the selection of the flux formulation as surface boundary condition (ln_flx set to .TRUE. in namelist namsbc) and elimination of the use of an unassigned variable (variable nsbc of module sbcmod_tam) in NEMOTAM (application of the patch attached to ticket #1738)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/NERC/dev_release-3.4_NEMOTAM_consolidated/NEMOGCM/NEMO/OPATAM_SRC/SBC/sbcmod_tam.F90

    r3640 r11806  
    9090      IF (lfirst) THEN 
    9191 
     92         nsbc = 0 
     93         IF (ln_flx) THEN 
     94            nsbc = 2 
     95            IF (lwp) WRITE(numout, *) 'sbc_init_tam: flux formulation' 
     96         ELSE 
     97            IF (lwp) WRITE(numout, *) 'sbc_init_tam: analytical SBC formulation '// & 
     98                 &                    '              of GYRE configuration' 
     99         ENDIF 
    92100         !CALL sbc_init 
    93101         IF( nn_ice == 0  )   fr_i_tl(:,:) = 0.e0       ! no ice in the domain, ice fraction is always zero 
Note: See TracChangeset for help on using the changeset viewer.