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 2305 for branches/nemo_v3_3_beta/NEMOGCM/NEMO/OPA_SRC/BDY/bdy_oce.F90 – NEMO

Ignore:
Timestamp:
2010-10-25T16:13:35+02:00 (14 years ago)
Author:
davestorkey
Message:

Updates to BDY - DOCTOR standards

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/nemo_v3_3_beta/NEMOGCM/NEMO/OPA_SRC/BDY/bdy_oce.F90

    r2287 r2305  
    2121   !! Namelist variables 
    2222   !!---------------------------------------------------------------------- 
    23    CHARACTER(len=80) ::   filbdy_mask        !: Name of unstruct. bdy mask file 
    24    CHARACTER(len=80) ::   filbdy_data_T      !: Name of unstruct. bdy data file at T points 
    25    CHARACTER(len=80) ::   filbdy_data_U      !: Name of unstruct. bdy data file at U points 
    26    CHARACTER(len=80) ::   filbdy_data_V      !: Name of unstruct. bdy data file at V points 
    27    CHARACTER(len=80) ::   filbdy_data_bt_T   !: Name of unstruct. bdy data file at T points for barotropic variables 
    28    CHARACTER(len=80) ::   filbdy_data_bt_U   !: Name of unstruct. bdy data file at U points for barotropic variables 
    29    CHARACTER(len=80) ::   filbdy_data_bt_V   !: Name of unstruct. bdy data file at V points for barotropic variables 
     23   CHARACTER(len=80) ::   cn_mask        !: Name of unstruct. bdy mask file 
     24   CHARACTER(len=80) ::   cn_dta_frs_T   !: Name of unstruct. bdy data file at T points for FRS conditions 
     25   CHARACTER(len=80) ::   cn_dta_frs_U   !: Name of unstruct. bdy data file at U points for FRS conditions 
     26   CHARACTER(len=80) ::   cn_dta_frs_V   !: Name of unstruct. bdy data file at V points for FRS conditions 
     27   CHARACTER(len=80) ::   cn_dta_fla_T   !: Name of unstruct. bdy data file at T points for Flather scheme 
     28   CHARACTER(len=80) ::   cn_dta_fla_U   !: Name of unstruct. bdy data file at U points for Flather scheme 
     29   CHARACTER(len=80) ::   cn_dta_fla_V   !: Name of unstruct. bdy data file at V points for Flather scheme 
    3030   ! 
    31    LOGICAL ::   ln_bdy_tides = .false.  !: =T apply tidal harmonic forcing along open boundaries 
    32    LOGICAL ::   ln_bdy_vol  = .false.   !: =T volume correction              
    33    LOGICAL ::   ln_bdy_mask = .false.   !: =T read bdymask from file 
    34    LOGICAL ::   ln_bdy_clim = .false.   !: if true, we assume that bdy data files contain  
     31   LOGICAL ::   ln_tides = .false.    !: =T apply tidal harmonic forcing along open boundaries 
     32   LOGICAL ::   ln_vol  = .false.     !: =T volume correction              
     33   LOGICAL ::   ln_mask = .false.     !: =T read bdymask from file 
     34   LOGICAL ::   ln_clim = .false.     !: if true, we assume that bdy data files contain  
    3535   !                                    !  1 time dump  (-->bdy forcing will be constant)  
    3636   !                                    !  or 12 months (-->bdy forcing will be cyclic)  
    37    LOGICAL ::   ln_bdy_dyn_fla  = .false. !: =T Flather boundary conditions on barotropic velocities 
    38    LOGICAL ::   ln_bdy_dyn_frs  = .false. !: =T FRS boundary conditions on velocities 
    39    LOGICAL ::   ln_bdy_tra_frs  = .false. !: =T FRS boundary conditions on tracers (T and S) 
    40    LOGICAL ::   ln_bdy_ice_frs  = .false. !: =T FRS boundary conditions on seaice (leads fraction, ice depth, snow depth) 
     37   LOGICAL ::   ln_dyn_fla  = .false. !: =T Flather boundary conditions on barotropic velocities 
     38   LOGICAL ::   ln_dyn_frs  = .false. !: =T FRS boundary conditions on velocities 
     39   LOGICAL ::   ln_tra_frs  = .false. !: =T FRS boundary conditions on tracers (T and S) 
     40   LOGICAL ::   ln_ice_frs  = .false. !: =T FRS boundary conditions on seaice (leads fraction, ice depth, snow depth) 
    4141   ! 
    42    INTEGER ::   nb_rimwidth = 7         !: boundary rim width 
    43    INTEGER ::   nbdy_dta    = 1          !: = 0 use the initial state as bdy dta or = 1 read it in a NetCDF file 
    44    INTEGER ::   volbdy      = 1         !: = 0 the total volume will have the variability of the surface Flux E-P  
     42   INTEGER ::   nn_rimwidth = 7         !: boundary rim width 
     43   INTEGER ::   nn_dtactl   = 1          !: = 0 use the initial state as bdy dta or = 1 read it in a NetCDF file 
     44   INTEGER ::   nn_volctl   = 1         !: = 0 the total volume will have the variability of the surface Flux E-P  
    4545   !                                    !  = 1 the volume will be constant during all the integration. 
    4646 
     
    8484   !!   Dummy module                NO Unstructured Open Boundary Condition 
    8585   !!---------------------------------------------------------------------- 
    86    LOGICAL ::   ln_bdy_tides = .false.  !: =T apply tidal harmonic forcing along open boundaries 
     86   LOGICAL ::   ln_tides = .false.  !: =T apply tidal harmonic forcing along open boundaries 
    8787#endif 
    8888 
Note: See TracChangeset for help on using the changeset viewer.