Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RFLU_ComputeIntegrals1245OLES.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 1,2,4,5 of optimal LES approach.
26 !
27 ! Description: None.
28 !
29 ! Input:
30 ! pRegion Pointer to current region
31 !
32 ! Output: None.
33 !
34 ! Notes: None.
35 !
36 !******************************************************************************
37 !
38 ! $Id: RFLU_ComputeIntegrals1245OLES.F90,v 1.5 2008/12/06 08:44:29 mtcampbe Exp $
39 !
40 ! Copyright: (c) 2002 by the University of Illinois
41 !
42 !******************************************************************************
43 
44 SUBROUTINE rflu_computeintegrals1245oles(pRegion)
45 
46  USE moddatatypes
47  USE moddatastruct, ONLY : t_region
48  USE moderror
49  USE modglobal, ONLY: t_global
50  USE modparameters
51  USE modmpi
52 
57 
58  IMPLICIT NONE
59 
60 ! --- parameters
61 
62  TYPE(t_region), POINTER :: pregion
63 
64 ! --- local variables
65 
66  TYPE(t_global), POINTER :: global
67 
68 ! ==============================================================================
69 ! Start
70 ! ==============================================================================
71 
72  global => pregion%global
73 
74  CALL registerfunction(global,'RFLU_ComputeIntegrals1245OLES',&
75  'RFLU_ComputeIntegrals1245OLES.F90')
76 
77  IF ( global%myProcid == masterproc .AND. &
78  global%verbLevel > verbose_none ) THEN
79  WRITE(stdout,'(A,1X,A)') solver_name
80  WRITE(stdout,'(A,1X,A)') solver_name,'Computing optimal LES '// &
81  'integrals...'
82  END IF ! global%verbLevel
83 
84 ! ==============================================================================
85 ! Compute integrals
86 ! ==============================================================================
87 
88  CALL rflu_computeintegral1oles(pregion)
89  CALL rflu_computeintegral2oles(pregion)
90  CALL rflu_computeintegral4oles(pregion)
91  CALL rflu_computeintegral5oles(pregion)
92 
93 ! ==============================================================================
94 ! End
95 ! ==============================================================================
96 
97  IF ( global%myProcid == masterproc .AND. &
98  global%verbLevel > verbose_none ) THEN
99  WRITE(stdout,'(A,1X,A)') solver_name,'Computing optimal LES '// &
100  'integrals done.'
101  END IF ! global%verbLevel
102 
103  CALL deregisterfunction(global)
104 
105 END SUBROUTINE rflu_computeintegrals1245oles
106 
107 
108 
109 
110 
111 
112 
subroutine rflu_computeintegral5oles(pRegion)
subroutine rflu_computeintegrals1245oles(pRegion)
subroutine rflu_computeintegral4oles(pRegion)
subroutine registerfunction(global, funName, fileName)
Definition: ModError.F90:449
subroutine rflu_computeintegral1oles(pRegion)
subroutine rflu_computeintegral2oles(pRegion)
subroutine deregisterfunction(global)
Definition: ModError.F90:469