Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Fluid_compute_integrals.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: Compute integrals for GENx checking.
26 !
27 ! Description: None.
28 !
29 ! Input:
30 ! globalGenx global data structure
31 !
32 ! Output: None.
33 !
34 ! Notes: None.
35 !
36 !******************************************************************************
37 !
38 ! $Id: Fluid_compute_integrals.F90,v 1.4 2008/12/06 08:44:00 mtcampbe Exp $
39 !
40 ! Copyright: (c) 2002 by the University of Illinois
41 !
42 !******************************************************************************
43 
44 SUBROUTINE fluid_compute_integrals(globalGenx,integ)
45 
46  USE modrocstar, ONLY: t_globalgenx
47 
48 #ifdef RFLO
50 #endif
51 #ifdef RFLU
53 #endif
54 
55  IMPLICIT NONE
56 
57  include 'rocmanf90.h'
58 
59 ! ... parameters
60  DOUBLE PRECISION, DIMENSION(MAN_INTEG_SIZE) :: integ
61  TYPE(t_globalgenx), POINTER :: globalgenx
62 
63 !******************************************************************************
64 
65 #ifdef RFLO
66  CALL rflo_computeintegralvalues(globalgenx%levels(1)%regions,integ)
67 #endif
68 #ifdef RFLU
69  CALL rflu_computeintegralvalues(globalgenx%levels(1)%regions,integ)
70 #endif
71 
72 
73 END SUBROUTINE fluid_compute_integrals
74 
75 !******************************************************************************
76 !
77 ! RCS Revision history:
78 !
79 ! $Log: Fluid_compute_integrals.F90,v $
80 ! Revision 1.4 2008/12/06 08:44:00 mtcampbe
81 ! Updated license.
82 !
83 ! Revision 1.3 2008/11/19 22:17:14 mtcampbe
84 ! Added Illinois Open Source License/Copyright
85 !
86 ! Revision 1.2 2005/02/26 04:06:02 wasistho
87 ! added RFLO_ComputeIntegralValues
88 !
89 ! Revision 1.1 2004/12/01 21:23:40 haselbac
90 ! Initial revision after changing case
91 !
92 ! Revision 1.1 2002/11/15 21:27:13 haselbac
93 ! Initial revision
94 !
95 !******************************************************************************
96 
97 
98 
99 
100 
101 
subroutine rflo_computeintegralvalues(regions)
subroutine rflu_computeintegralvalues(regions)
subroutine fluid_compute_integrals(globalGenx, integ)