[284] | 1 | SUBROUTINE set_slicer_attributes_dvrp( n_slicer ) |
---|
[278] | 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: |
---|
[278] | 21 | ! ----------------- |
---|
[1354] | 22 | ! |
---|
| 23 | ! |
---|
[1321] | 24 | ! Former revisions: |
---|
| 25 | ! ----------------- |
---|
| 26 | ! $Id: set_slicer_attributes_dvrp.f90 1354 2014-04-08 15:22:57Z raasch $ |
---|
| 27 | ! |
---|
[1354] | 28 | ! 1353 2014-04-08 15:21:23Z heinze |
---|
| 29 | ! REAL constants provided with KIND-attribute |
---|
| 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 | ! old module precision_kind is removed, |
---|
| 36 | ! revision history before 2012 removed, |
---|
| 37 | ! comment fields (!:) to be used for variable explanations added to |
---|
| 38 | ! all variable declaration statements |
---|
[278] | 39 | ! |
---|
[1037] | 40 | ! 1036 2012-10-22 13:43:42Z raasch |
---|
| 41 | ! code put under GPL (PALM 3.9) |
---|
| 42 | ! |
---|
[392] | 43 | ! 305 2009-04-27 11:58:42Z raasch |
---|
| 44 | ! Initial version |
---|
[278] | 45 | ! |
---|
| 46 | ! Description: |
---|
| 47 | ! ------------ |
---|
| 48 | ! This routine sets the dvrp-slicer attributes |
---|
| 49 | !------------------------------------------------------------------------------! |
---|
[305] | 50 | |
---|
[278] | 51 | #if defined( __dvrp_graphics ) |
---|
| 52 | |
---|
[1320] | 53 | USE dvrp_variables, & |
---|
| 54 | ONLY: dvrp_colortable_entries, interval_h_dvrp, interval_values_dvrp, & |
---|
| 55 | slicer_range_limits_dvrp |
---|
[278] | 56 | |
---|
[1320] | 57 | USE kinds |
---|
| 58 | |
---|
[278] | 59 | IMPLICIT NONE |
---|
| 60 | |
---|
[1320] | 61 | INTEGER(iwp) :: j !: |
---|
| 62 | INTEGER(iwp) :: n_slicer !: |
---|
[278] | 63 | |
---|
[1320] | 64 | REAL(wp) :: maxv !: |
---|
| 65 | REAL(wp) :: meav !: |
---|
| 66 | REAL(wp) :: minv !: |
---|
[284] | 67 | |
---|
[1320] | 68 | |
---|
[278] | 69 | ! |
---|
[284] | 70 | !-- Set interval values to user settings. |
---|
| 71 | !-- The middle of this interval defines the change from blue to yellow |
---|
| 72 | minv = slicer_range_limits_dvrp(1,n_slicer) |
---|
| 73 | maxv = slicer_range_limits_dvrp(2,n_slicer) |
---|
[1353] | 74 | meav = ( minv + maxv ) * 0.5_wp |
---|
[278] | 75 | |
---|
[284] | 76 | ! |
---|
| 77 | !-- Create appropriate colortable with 100 entries. |
---|
| 78 | !-- This table ranges from deep blue (min) to deep red (max) |
---|
| 79 | DO j = 1, 50 |
---|
[1353] | 80 | interval_values_dvrp(1,j) = minv + (meav-minv) * ( j - 1.0_wp ) / 50.0_wp |
---|
| 81 | interval_values_dvrp(2,j) = minv + (meav-minv) * ( j ) / 50.0_wp |
---|
| 82 | interval_h_dvrp(:,j) = 270.0_wp - ( j - 1.0_wp ) * 90.0_wp / 49.0_wp |
---|
[284] | 83 | ENDDO |
---|
| 84 | |
---|
| 85 | DO j = 51, 100 |
---|
[1353] | 86 | interval_values_dvrp(1,j) = meav + (maxv-meav) * ( j - 51.0_wp ) / 50.0_wp |
---|
| 87 | interval_values_dvrp(2,j) = meav + (maxv-meav) * ( j - 50.0_wp ) / 50.0_wp |
---|
| 88 | interval_h_dvrp(:,j) = 70.0_wp - ( j - 51.0_wp ) * 90.0_wp / 49.0_wp |
---|
[284] | 89 | ENDDO |
---|
| 90 | |
---|
[285] | 91 | dvrp_colortable_entries = 100 |
---|
[284] | 92 | |
---|
[278] | 93 | #endif |
---|
[305] | 94 | |
---|
[278] | 95 | END SUBROUTINE set_slicer_attributes_dvrp |
---|