1 | SUBROUTINE set_slicer_attributes_dvrp( n_slicer ) |
---|
2 | |
---|
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 | ! |
---|
17 | ! Copyright 1997-2012 Leibniz University Hannover |
---|
18 | !--------------------------------------------------------------------------------! |
---|
19 | ! |
---|
20 | ! Current revisions: |
---|
21 | ! ----------------- |
---|
22 | ! |
---|
23 | ! |
---|
24 | ! Former revisions: |
---|
25 | ! ----------------- |
---|
26 | ! $Id: set_slicer_attributes_dvrp.f90 1037 2012-10-22 14:10:22Z witha $ |
---|
27 | ! |
---|
28 | ! 1036 2012-10-22 13:43:42Z raasch |
---|
29 | ! code put under GPL (PALM 3.9) |
---|
30 | ! |
---|
31 | ! 305 2009-04-27 11:58:42Z raasch |
---|
32 | ! Initial version |
---|
33 | ! |
---|
34 | ! Description: |
---|
35 | ! ------------ |
---|
36 | ! This routine sets the dvrp-slicer attributes |
---|
37 | !------------------------------------------------------------------------------! |
---|
38 | |
---|
39 | #if defined( __dvrp_graphics ) |
---|
40 | |
---|
41 | USE control_parameters |
---|
42 | USE dvrp_variables |
---|
43 | |
---|
44 | IMPLICIT NONE |
---|
45 | |
---|
46 | INTEGER :: j, n_slicer |
---|
47 | REAL :: maxv, meav, minv |
---|
48 | |
---|
49 | |
---|
50 | ! |
---|
51 | !-- Set interval values to user settings. |
---|
52 | !-- The middle of this interval defines the change from blue to yellow |
---|
53 | minv = slicer_range_limits_dvrp(1,n_slicer) |
---|
54 | maxv = slicer_range_limits_dvrp(2,n_slicer) |
---|
55 | meav = ( minv + maxv ) * 0.5 |
---|
56 | |
---|
57 | ! |
---|
58 | !-- Create appropriate colortable with 100 entries. |
---|
59 | !-- This table ranges from deep blue (min) to deep red (max) |
---|
60 | DO j = 1, 50 |
---|
61 | interval_values_dvrp(1,j) = minv + (meav-minv) * (j-1.0) / 50.0 |
---|
62 | interval_values_dvrp(2,j) = minv + (meav-minv) * ( j ) / 50.0 |
---|
63 | interval_h_dvrp(:,j) = 270.0 - ( j - 1.0 ) * 90.0 / 49.0 |
---|
64 | ENDDO |
---|
65 | |
---|
66 | DO j = 51, 100 |
---|
67 | interval_values_dvrp(1,j) = meav + (maxv-meav) * (j-51.0) / 50.0 |
---|
68 | interval_values_dvrp(2,j) = meav + (maxv-meav) * (j-50.0) / 50.0 |
---|
69 | interval_h_dvrp(:,j) = 70.0 - ( j - 51.0 ) * 90.0 / 49.0 |
---|
70 | ENDDO |
---|
71 | |
---|
72 | dvrp_colortable_entries = 100 |
---|
73 | |
---|
74 | #endif |
---|
75 | |
---|
76 | END SUBROUTINE set_slicer_attributes_dvrp |
---|