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

Last change on this file since 2000 was 2000, checked in by knoop, 8 years ago

Forced header and separation lines into 80 columns

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