Changeset 4648 for palm/trunk/SOURCE/init_rankine.f90
- Timestamp:
- Aug 25, 2020 7:52:08 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/init_rankine.f90
r4457 r4648 1 1 !> @file init_rankine.f90 2 !------------------------------------------------------------------------------ !2 !--------------------------------------------------------------------------------------------------! 3 3 ! This file is part of the PALM model system. 4 4 ! 5 ! PALM is free software: you can redistribute it and/or modify it under the 6 ! terms of the GNU General Public License as published by the Free Software 7 ! Foundation, either version 3 of the License, or (at your option) any later 8 ! version. 9 ! 10 ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY 11 ! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 12 ! A PARTICULAR PURPOSE. See the GNU General Public License for more details. 13 ! 14 ! You should have received a copy of the GNU General Public License along with 15 ! PALM. If not, see <http://www.gnu.org/licenses/>. 5 ! PALM is free software: you can redistribute it and/or modify it under the terms of the GNU General 6 ! Public License as published by the Free Software Foundation, either version 3 of the License, or 7 ! (at your option) any later version. 8 ! 9 ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 10 ! implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 11 ! Public License for more details. 12 ! 13 ! You should have received a copy of the GNU General Public License along with PALM. If not, see 14 ! <http://www.gnu.org/licenses/>. 16 15 ! 17 16 ! Copyright 1997-2020 Leibniz Universitaet Hannover 18 !------------------------------------------------------------------------------ !17 !--------------------------------------------------------------------------------------------------! 19 18 ! 20 19 ! Current revisions: 21 20 ! ----------------- 22 ! 23 ! 21 ! 22 ! 24 23 ! Former revisions: 25 24 ! ----------------- 26 25 ! $Id$ 26 ! file re-formatted to follow the PALM coding standard 27 ! 28 ! 4457 2020-03-11 14:20:43Z raasch 27 29 ! use statement for exchange horiz added 28 ! 30 ! 29 31 ! 4360 2020-01-07 11:25:50Z suehring 30 32 ! Corrected "Former revisions" section 31 ! 33 ! 32 34 ! 3655 2019-01-07 16:51:22Z knoop 33 35 ! Modularization of all bulk cloud physics code components … … 39 41 ! Description: 40 42 ! ------------ 41 !> Initialize a (nondivergent) Rankine eddy with a vertical axis in order to test 42 !> t he advection terms and the pressure solver.43 !------------------------------------------------------------------------------ !43 !> Initialize a (nondivergent) Rankine eddy with a vertical axis in order to test the advection 44 !> terms and the pressure solver. 45 !--------------------------------------------------------------------------------------------------! 44 46 SUBROUTINE init_rankine 45 46 47 USE arrays_3d, &47 48 49 USE arrays_3d, & 48 50 ONLY: pt, pt_init, u, u_init, v, v_init 49 51 50 USE control_parameters, &51 ONLY: initializing_actions, n_sor, nsor, nsor_ini 52 53 USE basic_constants_and_equations_mod, &52 USE control_parameters, & 53 ONLY: initializing_actions, n_sor, nsor, nsor_ini 54 55 USE basic_constants_and_equations_mod, & 54 56 ONLY: pi 55 57 56 USE exchange_horiz_mod, &58 USE exchange_horiz_mod, & 57 59 ONLY: exchange_horiz 58 60 59 USE grid_variables, &60 ONLY: dx, dy 61 62 USE indices, &63 ONLY: nbgp, nx, nxl, nxlg, nxr, nxrg, nyn, nyng, nys, nysg, nzb, nzt 64 61 USE grid_variables, & 62 ONLY: dx, dy 63 64 USE indices, & 65 ONLY: nbgp, nx, nxl, nxlg, nxr, nxrg, nyn, nyng, nys, nysg, nzb, nzt 66 65 67 USE kinds 66 68 … … 74 76 INTEGER(iwp) :: kc1 !< 75 77 INTEGER(iwp) :: kc2 !< 76 78 77 79 REAL(wp) :: alpha !< 78 80 REAL(wp) :: betrag !<
Note: See TracChangeset
for help on using the changeset viewer.