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

Last change on this file since 1682 was 1682, checked in by knoop, 9 years ago

Code annotations made doxygen readable

  • Property svn:keywords set to Id
File size: 3.2 KB
Line 
1!> @file set_slicer_attributes_dvrp.f90
2!--------------------------------------------------------------------------------!
3! This file is part of PALM.
4!
5! PALM is free software: you can redistribute it and/or modify it under the terms
6! of the GNU General Public License as published by the Free Software Foundation,
7! either version 3 of the License, or (at your option) any later version.
8!
9! PALM is distributed in the hope that it will be useful, but WITHOUT ANY
10! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11! A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
12!
13! You should have received a copy of the GNU General Public License along with
14! PALM. If not, see <http://www.gnu.org/licenses/>.
15!
16! Copyright 1997-2014 Leibniz Universitaet Hannover
17!--------------------------------------------------------------------------------!
18!
19! Current revisions:
20! -----------------
21! Code annotations made doxygen readable
22!
23! Former revisions:
24! -----------------
25! $Id: set_slicer_attributes_dvrp.f90 1682 2015-10-07 23:56:08Z knoop $
26!
27! 1353 2014-04-08 15:21:23Z heinze
28! REAL constants provided with KIND-attribute
29!
30! 1320 2014-03-20 08:40:49Z raasch
31! ONLY-attribute added to USE-statements,
32! kind-parameters added to all INTEGER and REAL declaration statements,
33! kinds are defined in new module kinds,
34! old module precision_kind is removed,
35! revision history before 2012 removed,
36! comment fields (!:) to be used for variable explanations added to
37! all variable declaration statements
38!
39! 1036 2012-10-22 13:43:42Z raasch
40! code put under GPL (PALM 3.9)
41!
42! 305 2009-04-27 11:58:42Z raasch
43! Initial version
44!
45! Description:
46! ------------
47!> This routine sets the dvrp-slicer attributes
48!------------------------------------------------------------------------------!
49 SUBROUTINE set_slicer_attributes_dvrp( n_slicer )
50 
51
52#if defined( __dvrp_graphics )
53
54    USE dvrp_variables,                                                        &
55        ONLY:  dvrp_colortable_entries, interval_h_dvrp, interval_values_dvrp, &
56               slicer_range_limits_dvrp
57
58    USE kinds
59
60    IMPLICIT NONE
61
62    INTEGER(iwp) ::  j         !<
63    INTEGER(iwp) ::  n_slicer  !<
64
65    REAL(wp)     ::  maxv      !<
66    REAL(wp)     ::  meav      !<
67    REAL(wp)     ::  minv      !<
68
69
70!
71!-- Set interval values to user settings.
72!-- The middle of this interval defines the change from blue to yellow
73    minv = slicer_range_limits_dvrp(1,n_slicer)
74    maxv = slicer_range_limits_dvrp(2,n_slicer)
75    meav = ( minv + maxv ) * 0.5_wp
76
77!
78!-- Create appropriate colortable with 100 entries.
79!-- This table ranges from deep blue (min) to deep red (max)
80    DO  j = 1, 50
81       interval_values_dvrp(1,j) = minv + (meav-minv) * ( j - 1.0_wp ) / 50.0_wp
82       interval_values_dvrp(2,j) = minv + (meav-minv) * ( j )          / 50.0_wp
83       interval_h_dvrp(:,j) = 270.0_wp - ( j - 1.0_wp ) * 90.0_wp / 49.0_wp
84    ENDDO
85
86    DO  j = 51, 100
87       interval_values_dvrp(1,j) = meav + (maxv-meav) * ( j - 51.0_wp ) / 50.0_wp
88       interval_values_dvrp(2,j) = meav + (maxv-meav) * ( j - 50.0_wp ) / 50.0_wp
89       interval_h_dvrp(:,j) = 70.0_wp - ( j - 51.0_wp ) * 90.0_wp / 49.0_wp
90    ENDDO
91
92    dvrp_colortable_entries = 100
93
94#endif
95
96 END SUBROUTINE set_slicer_attributes_dvrp
Note: See TracBrowser for help on using the repository browser.