[95] | 1 | SUBROUTINE init_ocean |
---|
| 2 | |
---|
[1036] | 3 | !--------------------------------------------------------------------------------! |
---|
| 4 | ! This file is part of PALM. |
---|
| 5 | ! |
---|
| 6 | ! PALM is free software: you can redistribute it and/or modify it under the terms |
---|
| 7 | ! of the GNU General Public License as published by the Free Software Foundation, |
---|
| 8 | ! either version 3 of the License, or (at your option) any later 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/>. |
---|
| 16 | ! |
---|
[1310] | 17 | ! Copyright 1997-2014 Leibniz Universitaet Hannover |
---|
[1036] | 18 | !--------------------------------------------------------------------------------! |
---|
| 19 | ! |
---|
[484] | 20 | ! Current revisions: |
---|
[95] | 21 | ! ----------------- |
---|
[1321] | 22 | ! |
---|
[1323] | 23 | ! |
---|
[1321] | 24 | ! Former revisions: |
---|
| 25 | ! ------------------ |
---|
| 26 | ! $Id: init_ocean.f90 1323 2014-03-20 17:09:54Z maronga $ |
---|
| 27 | ! |
---|
[1323] | 28 | ! 1322 2014-03-20 16:38:49Z raasch |
---|
| 29 | ! REAL constants defined as wp_kind |
---|
| 30 | ! |
---|
[1321] | 31 | ! 1320 2014-03-20 08:40:49Z raasch |
---|
[1320] | 32 | ! ONLY-attribute added to USE-statements, |
---|
| 33 | ! kind-parameters added to all INTEGER and REAL declaration statements, |
---|
| 34 | ! kinds are defined in new module kinds, |
---|
| 35 | ! revision history before 2012 removed, |
---|
| 36 | ! comment fields (!:) to be used for variable explanations added to |
---|
| 37 | ! all variable declaration statements |
---|
[95] | 38 | ! |
---|
[1182] | 39 | ! 1179 2013-06-14 05:57:58Z raasch |
---|
| 40 | ! Initial density profile is stored in array hom |
---|
| 41 | ! |
---|
[1037] | 42 | ! 1036 2012-10-22 13:43:42Z raasch |
---|
| 43 | ! code put under GPL (PALM 3.9) |
---|
| 44 | ! |
---|
[98] | 45 | ! 97 2007-06-21 08:23:15Z raasch |
---|
| 46 | ! Initial revision |
---|
[95] | 47 | ! |
---|
| 48 | ! Description: |
---|
| 49 | ! ------------ |
---|
| 50 | ! Initialization of quantities needed for the ocean version |
---|
| 51 | !------------------------------------------------------------------------------! |
---|
| 52 | |
---|
[1320] | 53 | USE arrays_3d, & |
---|
| 54 | ONLY: dzu, hyp, pt_init, ref_state, sa_init, zu, zw |
---|
| 55 | |
---|
| 56 | USE control_parameters, & |
---|
| 57 | ONLY: g, prho_reference, rho_surface, rho_reference, & |
---|
| 58 | surface_pressure, use_single_reference_value |
---|
| 59 | |
---|
| 60 | USE eqn_state_seawater_mod, & |
---|
| 61 | ONLY: eqn_state_seawater, eqn_state_seawater_func |
---|
| 62 | |
---|
| 63 | USE indices, & |
---|
| 64 | ONLY: nzb, nzt |
---|
| 65 | |
---|
| 66 | USE kinds |
---|
| 67 | |
---|
[1179] | 68 | USE pegrid |
---|
[95] | 69 | |
---|
[1320] | 70 | USE statistics, & |
---|
| 71 | ONLY: hom, statistic_regions |
---|
| 72 | |
---|
[95] | 73 | IMPLICIT NONE |
---|
| 74 | |
---|
[1320] | 75 | INTEGER(iwp) :: k !: |
---|
| 76 | INTEGER(iwp) :: n !: |
---|
[95] | 77 | |
---|
[1320] | 78 | REAL(wp) :: pt_l !: |
---|
| 79 | REAL(wp) :: sa_l !: |
---|
[95] | 80 | |
---|
[1320] | 81 | REAL(wp), DIMENSION(nzb:nzt+1) :: rho_init !: |
---|
[336] | 82 | |
---|
[95] | 83 | ALLOCATE( hyp(nzb:nzt+1) ) |
---|
| 84 | |
---|
| 85 | ! |
---|
| 86 | !-- Set water density near the ocean surface |
---|
| 87 | rho_surface = 1027.62 |
---|
| 88 | |
---|
| 89 | ! |
---|
| 90 | !-- Calculate initial vertical profile of hydrostatic pressure (in Pa) |
---|
[96] | 91 | !-- and the reference density (used later in buoyancy term) |
---|
[388] | 92 | !-- First step: Calculate pressure using reference density |
---|
[1322] | 93 | hyp(nzt+1) = surface_pressure * 100.0_wp |
---|
[95] | 94 | |
---|
[97] | 95 | hyp(nzt) = hyp(nzt+1) + rho_surface * g * 0.5 * dzu(nzt+1) |
---|
[336] | 96 | rho_init(nzt) = rho_surface |
---|
[95] | 97 | |
---|
[366] | 98 | DO k = nzt-1, 1, -1 |
---|
[336] | 99 | hyp(k) = hyp(k+1) + rho_surface * g * dzu(k) |
---|
| 100 | ENDDO |
---|
[366] | 101 | hyp(0) = hyp(1) + rho_surface * g * dzu(1) |
---|
[95] | 102 | |
---|
[388] | 103 | ! |
---|
| 104 | !-- Second step: Iteratively calculate in situ density (based on presssure) |
---|
| 105 | !-- and pressure (based on in situ density) |
---|
[336] | 106 | DO n = 1, 5 |
---|
[95] | 107 | |
---|
[336] | 108 | rho_reference = rho_surface * 0.5 * dzu(nzt+1) |
---|
[95] | 109 | |
---|
[336] | 110 | DO k = nzt-1, 0, -1 |
---|
| 111 | |
---|
| 112 | sa_l = 0.5 * ( sa_init(k) + sa_init(k+1) ) |
---|
| 113 | pt_l = 0.5 * ( pt_init(k) + pt_init(k+1) ) |
---|
| 114 | |
---|
| 115 | rho_init(k) = eqn_state_seawater_func( hyp(k), pt_l, sa_l ) |
---|
| 116 | |
---|
| 117 | rho_reference = rho_reference + rho_init(k) * dzu(k+1) |
---|
| 118 | |
---|
| 119 | ENDDO |
---|
| 120 | |
---|
| 121 | rho_reference = rho_reference / ( zw(nzt) - zu(nzb) ) |
---|
| 122 | |
---|
| 123 | DO k = nzt-1, 0, -1 |
---|
| 124 | hyp(k) = hyp(k+1) + g * 0.5 * ( rho_init(k) + rho_init(k+1 ) ) * & |
---|
| 125 | dzu(k+1) |
---|
| 126 | ENDDO |
---|
| 127 | |
---|
[95] | 128 | ENDDO |
---|
| 129 | |
---|
[97] | 130 | ! |
---|
| 131 | !-- Calculate the reference potential density |
---|
| 132 | prho_reference = 0.0 |
---|
| 133 | DO k = 0, nzt |
---|
[96] | 134 | |
---|
[97] | 135 | sa_l = 0.5 * ( sa_init(k) + sa_init(k+1) ) |
---|
| 136 | pt_l = 0.5 * ( pt_init(k) + pt_init(k+1) ) |
---|
| 137 | |
---|
| 138 | prho_reference = prho_reference + dzu(k+1) * & |
---|
[1320] | 139 | eqn_state_seawater_func( 0.0_wp, pt_l, sa_l ) |
---|
[97] | 140 | |
---|
| 141 | ENDDO |
---|
| 142 | |
---|
| 143 | prho_reference = prho_reference / ( zu(nzt) - zu(nzb) ) |
---|
| 144 | |
---|
[124] | 145 | ! |
---|
[388] | 146 | !-- Calculate the 3d array of initial in situ and potential density, |
---|
| 147 | !-- based on the initial temperature and salinity profile |
---|
[124] | 148 | CALL eqn_state_seawater |
---|
[97] | 149 | |
---|
[1179] | 150 | ! |
---|
| 151 | !-- Store initial density profile |
---|
| 152 | hom(:,1,77,:) = SPREAD( rho_init(:), 2, statistic_regions+1 ) |
---|
[124] | 153 | |
---|
[1179] | 154 | ! |
---|
| 155 | !-- Set the reference state to be used in the buoyancy terms |
---|
| 156 | IF ( use_single_reference_value ) THEN |
---|
| 157 | ref_state(:) = prho_reference |
---|
| 158 | ELSE |
---|
| 159 | ref_state(:) = rho_init(:) |
---|
| 160 | ENDIF |
---|
| 161 | |
---|
| 162 | |
---|
[95] | 163 | END SUBROUTINE init_ocean |
---|