[1682] | 1 | !> @file set_slicer_attributes_dvrp.f90 |
---|
[2000] | 2 | !------------------------------------------------------------------------------! |
---|
[2696] | 3 | ! This file is part of the PALM model system. |
---|
[1036] | 4 | ! |
---|
[2000] | 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. |
---|
[1036] | 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 | ! |
---|
[2718] | 17 | ! Copyright 1997-2018 Leibniz Universitaet Hannover |
---|
[2000] | 18 | !------------------------------------------------------------------------------! |
---|
[1036] | 19 | ! |
---|
[484] | 20 | ! Current revisions: |
---|
[278] | 21 | ! ----------------- |
---|
[1354] | 22 | ! |
---|
[2001] | 23 | ! |
---|
[1321] | 24 | ! Former revisions: |
---|
| 25 | ! ----------------- |
---|
| 26 | ! $Id: set_slicer_attributes_dvrp.f90 2718 2018-01-02 08:49:38Z suehring $ |
---|
[2716] | 27 | ! Corrected "Former revisions" section |
---|
| 28 | ! |
---|
| 29 | ! 2696 2017-12-14 17:12:51Z kanani |
---|
| 30 | ! Change in file header (GPL part) |
---|
[1321] | 31 | ! |
---|
[2716] | 32 | ! 2101 2017-01-05 16:42:31Z suehring |
---|
| 33 | ! |
---|
[2001] | 34 | ! 2000 2016-08-20 18:09:15Z knoop |
---|
| 35 | ! Forced header and separation lines into 80 columns |
---|
| 36 | ! |
---|
[1683] | 37 | ! 1682 2015-10-07 23:56:08Z knoop |
---|
| 38 | ! Code annotations made doxygen readable |
---|
| 39 | ! |
---|
[1354] | 40 | ! 1353 2014-04-08 15:21:23Z heinze |
---|
| 41 | ! REAL constants provided with KIND-attribute |
---|
| 42 | ! |
---|
[1321] | 43 | ! 1320 2014-03-20 08:40:49Z raasch |
---|
[1320] | 44 | ! ONLY-attribute added to USE-statements, |
---|
| 45 | ! kind-parameters added to all INTEGER and REAL declaration statements, |
---|
| 46 | ! kinds are defined in new module kinds, |
---|
| 47 | ! old module precision_kind is removed, |
---|
| 48 | ! revision history before 2012 removed, |
---|
| 49 | ! comment fields (!:) to be used for variable explanations added to |
---|
| 50 | ! all variable declaration statements |
---|
[278] | 51 | ! |
---|
[1037] | 52 | ! 1036 2012-10-22 13:43:42Z raasch |
---|
| 53 | ! code put under GPL (PALM 3.9) |
---|
| 54 | ! |
---|
[392] | 55 | ! 305 2009-04-27 11:58:42Z raasch |
---|
| 56 | ! Initial version |
---|
[278] | 57 | ! |
---|
| 58 | ! Description: |
---|
| 59 | ! ------------ |
---|
[1682] | 60 | !> This routine sets the dvrp-slicer attributes |
---|
[278] | 61 | !------------------------------------------------------------------------------! |
---|
[1682] | 62 | SUBROUTINE set_slicer_attributes_dvrp( n_slicer ) |
---|
| 63 | |
---|
[305] | 64 | |
---|
[278] | 65 | #if defined( __dvrp_graphics ) |
---|
| 66 | |
---|
[1320] | 67 | USE dvrp_variables, & |
---|
| 68 | ONLY: dvrp_colortable_entries, interval_h_dvrp, interval_values_dvrp, & |
---|
| 69 | slicer_range_limits_dvrp |
---|
[278] | 70 | |
---|
[1320] | 71 | USE kinds |
---|
| 72 | |
---|
[278] | 73 | IMPLICIT NONE |
---|
| 74 | |
---|
[1682] | 75 | INTEGER(iwp) :: j !< |
---|
| 76 | INTEGER(iwp) :: n_slicer !< |
---|
[278] | 77 | |
---|
[1682] | 78 | REAL(wp) :: maxv !< |
---|
| 79 | REAL(wp) :: meav !< |
---|
| 80 | REAL(wp) :: minv !< |
---|
[284] | 81 | |
---|
[1320] | 82 | |
---|
[278] | 83 | ! |
---|
[284] | 84 | !-- Set interval values to user settings. |
---|
| 85 | !-- The middle of this interval defines the change from blue to yellow |
---|
| 86 | minv = slicer_range_limits_dvrp(1,n_slicer) |
---|
| 87 | maxv = slicer_range_limits_dvrp(2,n_slicer) |
---|
[1353] | 88 | meav = ( minv + maxv ) * 0.5_wp |
---|
[278] | 89 | |
---|
[284] | 90 | ! |
---|
| 91 | !-- Create appropriate colortable with 100 entries. |
---|
| 92 | !-- This table ranges from deep blue (min) to deep red (max) |
---|
| 93 | DO j = 1, 50 |
---|
[1353] | 94 | interval_values_dvrp(1,j) = minv + (meav-minv) * ( j - 1.0_wp ) / 50.0_wp |
---|
| 95 | interval_values_dvrp(2,j) = minv + (meav-minv) * ( j ) / 50.0_wp |
---|
| 96 | interval_h_dvrp(:,j) = 270.0_wp - ( j - 1.0_wp ) * 90.0_wp / 49.0_wp |
---|
[284] | 97 | ENDDO |
---|
| 98 | |
---|
| 99 | DO j = 51, 100 |
---|
[1353] | 100 | interval_values_dvrp(1,j) = meav + (maxv-meav) * ( j - 51.0_wp ) / 50.0_wp |
---|
| 101 | interval_values_dvrp(2,j) = meav + (maxv-meav) * ( j - 50.0_wp ) / 50.0_wp |
---|
| 102 | interval_h_dvrp(:,j) = 70.0_wp - ( j - 51.0_wp ) * 90.0_wp / 49.0_wp |
---|
[284] | 103 | ENDDO |
---|
| 104 | |
---|
[285] | 105 | dvrp_colortable_entries = 100 |
---|
[284] | 106 | |
---|
[278] | 107 | #endif |
---|
[305] | 108 | |
---|
[278] | 109 | END SUBROUTINE set_slicer_attributes_dvrp |
---|