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 12807 for NEMO/branches/2020/dev_r12558_HPC-08_epico_Extra_Halo/src/OCE/LBC/halo_mng.F90 – NEMO

Ignore:
Timestamp:
2020-04-23T15:14:45+02:00 (4 years ago)
Author:
smasson
Message:

Extra_Halo: input file only over inner domain + new variables names, see #2366

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2020/dev_r12558_HPC-08_epico_Extra_Halo/src/OCE/LBC/halo_mng.F90

    r12719 r12807  
    2626   INTEGER :: jpi_1, jpj_1 
    2727   INTEGER :: jpimax_1, jpjmax_1 
    28    INTEGER :: nlci_1, nlcj_1 
    29    INTEGER :: nldi_1, nldj_1 
    30    INTEGER :: nlei_1, nlej_1 
     28   INTEGER :: Nis0_1, Njs0_1 
     29   INTEGER :: Nie0_1, Nje0_1 
    3130CONTAINS 
    3231 
     
    3635        jpj_1 = jpj 
    3736 
    38         nlci_1 = nlci 
    39         nlcj_1 = nlcj 
     37        Nis0_1 = Nis0 
     38        Njs0_1 = Njs0 
    4039 
    41         nldi_1 = nldi 
    42         nldj_1 = nldj 
    43  
    44         nlei_1 = nlei 
    45         nlej_1 = nlej 
     40        Nie0_1 = Nie0 
     41        Nje0_1 = Nje0 
    4642 
    4743      jpimax_1 = jpimax 
     
    5955        jpj = jpj_1 + 2*khls -2 
    6056 
    61         nlci = nlci_1 + 2*khls -2 
    62         nlcj = nlcj_1 + 2*khls -2 
     57        jpi = jpi_1 + 2*khls -2 
     58        jpj = jpj_1 + 2*khls -2 
    6359         
    6460        jpimax = jpimax_1 + 2*khls -2 
    6561        jpjmax = jpjmax_1 + 2*khls -2 
    6662 
    67         nldi = nldi_1 + khls - 1 
    68         nldj = nldj_1 + khls - 1 
     63        Nis0 = Nis0_1 + khls - 1 
     64        Njs0 = Njs0_1 + khls - 1 
    6965 
    70         nlei = nlei_1 + khls - 1 
    71         nlej = nlej_1 + khls - 1 
     66        Nie0 = Nie0_1 + khls - 1 
     67        Nje0 = Nje0_1 + khls - 1 
    7268 
    7369   END SUBROUTINE halo_mng_set 
Note: See TracChangeset for help on using the changeset viewer.