Changeset 5116 for LMDZ6/branches/Amaury_dev/libf/phylmd/regr_pr_int_m.F90
- Timestamp:
- Jul 24, 2024, 2:54:37 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/phylmd/regr_pr_int_m.F90
r5113 r5116 24 24 ! Regridding is by linear interpolation. 25 25 26 use dimphy, only: klon27 use netcdf95, only: nf95_inq_varid, nf95_get_var28 use lmdz_assert, only: assert29 use regr_lint_m, only: regr_lint30 use lmdz_phys_mpi_data, only: is_mpi_root31 use lmdz_grid_phy, only: nbp_lon, nbp_lat, nbp_lev32 use lmdz_phys_transfert_para, only: scatter2d26 use dimphy, ONLY: klon 27 use netcdf95, ONLY: nf95_inq_varid, nf95_get_var 28 use lmdz_assert, ONLY: assert 29 use regr_lint_m, ONLY: regr_lint 30 use lmdz_phys_mpi_data, ONLY: is_mpi_root 31 use lmdz_grid_phy, ONLY: nbp_lon, nbp_lat, nbp_lev 32 use lmdz_phys_transfert_para, ONLY: scatter2d 33 33 ! (pack to the LMDZ horizontal "physics" grid and scatter) 34 34 35 35 integer, intent(in):: ncid ! NetCDF ID of the file 36 character(len=*), intent(in):: name ! of the NetCDF variable36 CHARACTER(LEN=*), intent(in):: name ! of the NetCDF variable 37 37 integer, intent(in):: julien ! jour julien, 1 <= julien <= 360 38 38 … … 74 74 75 75 !$omp master 76 if (is_mpi_root) then76 if (is_mpi_root) THEN 77 77 CALL nf95_inq_varid(ncid, name, varid) 78 78
Note: See TracChangeset
for help on using the changeset viewer.