source: palm/trunk/SOURCE/set_slicer_attributes_dvrp.f90 @ 1320

Last change on this file since 1320 was 1320, checked in by raasch, 10 years ago

ONLY-attribute added to USE-statements,
kind-parameters added to all INTEGER and REAL declaration statements,
kinds are defined in new module kinds,
old module precision_kind is removed,
revision history before 2012 removed,
comment fields (!:) to be used for variable explanations added to all variable declaration statements

  • Property svn:keywords set to Id
File size: 2.9 KB
Line 
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-2014 Leibniz Universitaet Hannover
18!--------------------------------------------------------------------------------!
19!
20! Current revisions:
21! -----------------
22! ONLY-attribute added to USE-statements,
23! kind-parameters added to all INTEGER and REAL declaration statements,
24! kinds are defined in new module kinds,
25! old module precision_kind is removed,
26! revision history before 2012 removed,
27! comment fields (!:) to be used for variable explanations added to
28! all variable declaration statements
29!
30! Former revisions:
31! -----------------
32! $Id: set_slicer_attributes_dvrp.f90 1320 2014-03-20 08:40:49Z raasch $
33!
34! 1036 2012-10-22 13:43:42Z raasch
35! code put under GPL (PALM 3.9)
36!
37! 305 2009-04-27 11:58:42Z raasch
38! Initial version
39!
40! Description:
41! ------------
42! This routine sets the dvrp-slicer attributes
43!------------------------------------------------------------------------------!
44
45#if defined( __dvrp_graphics )
46
47    USE dvrp_variables,                                                        &
48        ONLY:  dvrp_colortable_entries, interval_h_dvrp, interval_values_dvrp, &
49               slicer_range_limits_dvrp
50
51    USE kinds
52
53    IMPLICIT NONE
54
55    INTEGER(iwp) ::  j         !:
56    INTEGER(iwp) ::  n_slicer  !:
57
58    REAL(wp)     ::  maxv      !:
59    REAL(wp)     ::  meav      !:
60    REAL(wp)     ::  minv      !:
61
62
63!
64!-- Set interval values to user settings.
65!-- The middle of this interval defines the change from blue to yellow
66    minv = slicer_range_limits_dvrp(1,n_slicer)
67    maxv = slicer_range_limits_dvrp(2,n_slicer)
68    meav = ( minv + maxv ) * 0.5
69
70!
71!-- Create appropriate colortable with 100 entries.
72!-- This table ranges from deep blue (min) to deep red (max)
73    DO  j = 1, 50
74       interval_values_dvrp(1,j) = minv + (meav-minv) * (j-1.0) / 50.0
75       interval_values_dvrp(2,j) = minv + (meav-minv) * (  j  ) / 50.0
76       interval_h_dvrp(:,j) = 270.0 - ( j - 1.0 ) * 90.0 / 49.0
77    ENDDO
78
79    DO  j = 51, 100
80       interval_values_dvrp(1,j) = meav + (maxv-meav) * (j-51.0) / 50.0
81       interval_values_dvrp(2,j) = meav + (maxv-meav) * (j-50.0) / 50.0
82       interval_h_dvrp(:,j) = 70.0 - ( j - 51.0 ) * 90.0 / 49.0
83    ENDDO
84
85    dvrp_colortable_entries = 100
86
87#endif
88
89 END SUBROUTINE set_slicer_attributes_dvrp
Note: See TracBrowser for help on using the repository browser.