Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RVAV_ModParameters.F90
Go to the documentation of this file.
1 ! *********************************************************************
2 ! * Rocstar Simulation Suite *
3 ! * Copyright@2015, Illinois Rocstar LLC. All rights reserved. *
4 ! * *
5 ! * Illinois Rocstar LLC *
6 ! * Champaign, IL *
7 ! * www.illinoisrocstar.com *
8 ! * sales@illinoisrocstar.com *
9 ! * *
10 ! * License: See LICENSE file in top level of distribution package or *
11 ! * http://opensource.org/licenses/NCSA *
12 ! *********************************************************************
13 ! *********************************************************************
14 ! * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, *
15 ! * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES *
16 ! * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND *
17 ! * NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR *
18 ! * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
19 ! * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, *
20 ! * Arising FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE *
21 ! * USE OR OTHER DEALINGS WITH THE SOFTWARE. *
22 ! *********************************************************************
23 !******************************************************************************
24 !
25 ! Purpose: define various integer parameters for RVAV routines
26 !
27 ! Description: none
28 !
29 ! Notes: none
30 !
31 !******************************************************************************
32 !
33 ! $Id: RVAV_ModParameters.F90,v 1.7 2008/12/06 08:45:08 mtcampbe Exp $
34 !
35 ! Copyright: (c) 2001 by the University of Illinois
36 !
37 !******************************************************************************
38 
40 
41  IMPLICIT NONE
42 
43 ! file types ------------------------------------------------------------------
44 
45  INTEGER, PARAMETER :: IF_RVAV_INPUT = 10 ! this is the fileID
46  INTEGER, PARAMETER :: FILE_COMPUTED = 10, &
47  FILE_EXPERIMENTAL = 20, &
48  FILE_ANALYTICAL = 30
49  INTEGER, PARAMETER :: IF_RVAV_FILE_S2 = 100 ! fileID for Stream 2
50  INTEGER, PARAMETER :: IF_RVAV_FILE_BL = 110 ! fileID for Blasius solution
51 
52 ! output ----------------------------------------------------------------------
53 
54  INTEGER, PARAMETER :: COMPUTE_ERRORS_ONLY = 10, &
55  PLOT_ERRORS_ONLY = 20, &
56  COMPUTE_AND_PLOT = 30
57 
58 ! numerical equivalents for the conserved and extracted variables in RVAV -----
59  INTEGER, PARAMETER :: RVAV_RHO = 1, & ! all conserved variables have
60  RVAV_RHOU = 2, & ! single digit identifiers
61  RVAV_RHOV = 3, &
62  RVAV_RHOW = 4, &
63  RVAV_RHOET = 5, &
64 ! ... the primitive (extracted) variables
65  rvav_u = 11, & ! all primitive variable with the
66  ! exception of density have two
67  ! digit identifiers
68  rvav_v = 12, &
69  rvav_w = 13, &
70  rvav_p = 14, &
71  rvav_t = 15, &
72 ! ... all derived (extracted) variables
73  rvav_tstag = 101, & ! all derived variables have
74  rvav_pstag = 102, & ! three digit identifiers
75  rvav_s = 201, &
76  rvav_omegax = 301, &
77  rvav_omegay = 302, &
78  rvav_omegaz = 303
79 
80 ! analytical solution type for similarity analysis ----------------------------
81 
82  INTEGER, PARAMETER :: RVAV_CULICK = 131, &
83  RVAV_BLASIUS = 132, &
84  RVAV_GAMMBUMP = 133
85 
86 END MODULE rvav_modparameters
87 
88 !******************************************************************************
89 !
90 ! RCS Revision history:
91 !
92 ! $Log: RVAV_ModParameters.F90,v $
93 ! Revision 1.7 2008/12/06 08:45:08 mtcampbe
94 ! Updated license.
95 !
96 ! Revision 1.6 2008/11/19 22:18:19 mtcampbe
97 ! Added Illinois Open Source License/Copyright
98 !
99 ! Revision 1.5 2002/07/25 00:51:47 jblazek
100 ! Option for TVD type pressure switch.
101 !
102 ! Revision 1.4 2002/06/24 15:47:35 f-najjar
103 ! Included File Parameter for Blasius
104 !
105 ! Revision 1.3 2002/06/19 20:26:22 f-najjar
106 ! Included GAMM Bump Definition
107 !
108 ! Revision 1.2 2002/06/15 17:53:19 f-najjar
109 ! Parameters for Similarity Solution
110 !
111 ! Revision 1.1.1.1 2002/06/03 21:41:29 f-najjar
112 ! Initial Import of RocVaV
113 !
114 !******************************************************************************
115 
116 
117 
118 
119 
120