Changeset 2453
- Timestamp:
- 2010-12-05T13:29:09+01:00 (14 years ago)
- Location:
- branches/nemo_v3_3_beta
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/nemo_v3_3_beta/DOC/TexFiles/Namelist/namdyn_hpg
r2282 r2453 12 12 ln_dynhpg_imp = .false. ! time stepping: semi-implicit time scheme (T) 13 13 ! centered time scheme (F) 14 nn_dynhpg_rst = 0 ! =1 dynhpg restartable restart or not (=0)15 14 / -
branches/nemo_v3_3_beta/NEMOGCM/CONFIG/GYRE/EXP00/namelist
r2417 r2453 535 535 ln_dynhpg_imp = .false. ! time stepping: semi-implicit time scheme (T) 536 536 ! centered time scheme (F) 537 nn_dynhpg_rst = 0 ! =1 dynhpg restartable restart or not (=0)538 537 / 539 538 !----------------------------------------------------------------------- -
branches/nemo_v3_3_beta/NEMOGCM/CONFIG/GYRE_LOBSTER/EXP00/namelist
r2417 r2453 535 535 ln_dynhpg_imp = .false. ! time stepping: semi-implicit time scheme (T) 536 536 ! centered time scheme (F) 537 nn_dynhpg_rst = 0 ! =1 dynhpg restartable restart or not (=0)538 537 / 539 538 !----------------------------------------------------------------------- -
branches/nemo_v3_3_beta/NEMOGCM/CONFIG/ORCA2_LIM/EXP00/1_namelist
r2417 r2453 535 535 ln_dynhpg_imp = .false. ! time stepping: semi-implicit time scheme (T) 536 536 ! centered time scheme (F) 537 nn_dynhpg_rst = 0 ! =1 dynhpg restartable restart or not (=0)538 537 / 539 538 !----------------------------------------------------------------------- -
branches/nemo_v3_3_beta/NEMOGCM/CONFIG/ORCA2_LIM/EXP00/namelist
r2417 r2453 535 535 ln_dynhpg_imp = .false. ! time stepping: semi-implicit time scheme (T) 536 536 ! centered time scheme (F) 537 nn_dynhpg_rst = 0 ! =1 dynhpg restartable restart or not (=0)538 537 / 539 538 !----------------------------------------------------------------------- -
branches/nemo_v3_3_beta/NEMOGCM/CONFIG/ORCA2_LIM_PISCES/EXP00/namelist
r2417 r2453 535 535 ln_dynhpg_imp = .false. ! time stepping: semi-implicit time scheme (T) 536 536 ! centered time scheme (F) 537 nn_dynhpg_rst = 0 ! =1 dynhpg restartable restart or not (=0)538 537 / 539 538 !----------------------------------------------------------------------- -
branches/nemo_v3_3_beta/NEMOGCM/CONFIG/ORCA2_OFF_PISCES/EXP00/namelist
r2417 r2453 536 536 ln_dynhpg_imp = .false. ! time stepping: semi-implicit time scheme (T) 537 537 ! centered time scheme (F) 538 nn_dynhpg_rst = 0 ! =1 dynhpg restartable restart or not (=0)539 538 / 540 539 !----------------------------------------------------------------------- -
branches/nemo_v3_3_beta/NEMOGCM/CONFIG/POMME/EXP00/namelist
r2417 r2453 535 535 ln_dynhpg_imp = .true. ! time stepping: semi-implicit time scheme (T) 536 536 ! centered time scheme (F) 537 nn_dynhpg_rst = 0 ! =1 dynhpg restartable restart or not (=0)538 537 / 539 538 !----------------------------------------------------------------------- -
branches/nemo_v3_3_beta/NEMOGCM/NEMO/OPA_SRC/DYN/dynhpg.F90
r2450 r2453 53 53 REAL(wp), PUBLIC :: rn_gamma = 0._wp !: weighting coefficient 54 54 LOGICAL , PUBLIC :: ln_dynhpg_imp = .FALSE. !: semi-implicite hpg flag 55 INTEGER , PUBLIC :: nn_dynhpg_rst = 0 !: add dynhpg implicit variables in restart ot not56 55 57 56 INTEGER :: nhpg = 0 ! = 0 to 6, type of pressure gradient scheme used ! (deduced from ln_hpg_... flags) … … 121 120 INTEGER :: ioptio = 0 ! temporary integer 122 121 !! 123 NAMELIST/namdyn_hpg/ ln_hpg_zco , ln_hpg_zps , ln_hpg_sco, ln_hpg_hel, & 124 & ln_hpg_wdj , ln_hpg_djc , ln_hpg_rot, rn_gamma , & 125 & ln_dynhpg_imp, nn_dynhpg_rst 122 NAMELIST/namdyn_hpg/ ln_hpg_zco, ln_hpg_zps, ln_hpg_sco, ln_hpg_hel, & 123 & ln_hpg_wdj, ln_hpg_djc, ln_hpg_rot, rn_gamma , ln_dynhpg_imp 126 124 !!---------------------------------------------------------------------- 127 125 ! … … 143 141 WRITE(numout,*) ' weighting coeff. (wdj scheme) rn_gamma = ', rn_gamma 144 142 WRITE(numout,*) ' time stepping: centered (F) or semi-implicit (T) ln_dynhpg_imp = ', ln_dynhpg_imp 145 WRITE(numout,*) ' add in restart dynhpg semi-implicit variable nn_dynhpg_rst = ', nn_dynhpg_rst146 143 ENDIF 147 !148 IF( .NOT. ln_dynhpg_imp ) nn_dynhpg_rst = 0 ! force no additional dynhpg implicit variables in restart file149 144 ! 150 145 IF( lk_vvl .AND. .NOT. ln_hpg_sco ) &
Note: See TracChangeset
for help on using the changeset viewer.