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 558 for trunk/NEMO/OPA_SRC/DYN – NEMO

Changeset 558 for trunk/NEMO/OPA_SRC/DYN


Ignore:
Timestamp:
2006-10-27T17:17:48+02:00 (18 years ago)
Author:
opalod
Message:

nemo_v1_bugfix_070: SM+RB+GM: add nn_rstssh for hand made initilization of ssh or not (1/0)

Location:
trunk/NEMO/OPA_SRC/DYN
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/DYN/dynspg_flt.F90

    r508 r558  
    391391           gcx (:,:) = 0.e0 
    392392           gcxb(:,:) = 0.e0 
    393            sshb(:,:) = 0.e0 
    394            sshn(:,:) = 0.e0 
     393           IF( nn_rstssh == 1 ) THEN   
     394              sshb(:,:) = 0.e0 
     395              sshn(:,:) = 0.e0 
     396           ENDIF 
    395397        ENDIF 
    396398     ELSEIF( TRIM(cdrw) == 'WRITE' ) THEN 
  • trunk/NEMO/OPA_SRC/DYN/dynspg_ts.F90

    r553 r558  
    517517            IF( neuler == 0 ) sshb(:,:) = sshn(:,:) 
    518518         ELSE 
    519             sshb(:,:) = 0.e0 
    520             sshn(:,:) = 0.e0 
     519            IF( nn_rstssh == 1 ) THEN   
     520               sshb(:,:) = 0.e0 
     521               sshn(:,:) = 0.e0 
     522            ENDIF 
    521523         ENDIF 
    522524         IF( iom_varid( numror, 'sshn_b' ) > 0 ) THEN 
Note: See TracChangeset for help on using the changeset viewer.