Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ModInterfacesStatistics.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: set explicit interfaces to subroutines and functions.
26 !
27 ! Description: none
28 !
29 ! Notes: none.
30 !
31 !******************************************************************************
32 !
33 ! $Id: ModInterfacesStatistics.F90,v 1.6 2008/12/06 08:44:19 mtcampbe Exp $
34 !
35 ! Copyright: (c) 2001 by the University of Illinois
36 !
37 !******************************************************************************
38 
40 
41  IMPLICIT NONE
42 
43  INTERFACE
44 
45 ! =============================================================================
46 ! time statistics
47 ! =============================================================================
48 
49 #ifdef STATS
50  SUBROUTINE readstatisticsection( global )
51  USE modglobal, ONLY : t_global
52  TYPE(t_global), POINTER :: global
53  END SUBROUTINE readstatisticsection
54 
55 #ifdef GENX
56  SUBROUTINE genxstatnaming( global, fluidType )
57  USE modglobal, ONLY : t_global
58  TYPE(t_global), POINTER :: global
59  INTEGER :: fluidtype
60  END SUBROUTINE genxstatnaming
61 #endif
62 #endif
63 
64  END INTERFACE
65 
66 END MODULE modinterfacesstatistics
67 
68 !******************************************************************************
69 !
70 ! RCS Revision history:
71 !
72 ! $Log: ModInterfacesStatistics.F90,v $
73 ! Revision 1.6 2008/12/06 08:44:19 mtcampbe
74 ! Updated license.
75 !
76 ! Revision 1.5 2008/11/19 22:17:30 mtcampbe
77 ! Added Illinois Open Source License/Copyright
78 !
79 ! Revision 1.4 2004/12/28 20:30:18 wasistho
80 ! moved statistics routines into module ModStatsRoutines
81 !
82 ! Revision 1.3 2004/12/01 00:08:59 wasistho
83 ! added BuildVersionString
84 !
85 ! Revision 1.2 2004/06/07 23:07:48 wasistho
86 ! added genxStatNaming interface
87 !
88 ! Revision 1.1 2002/12/27 22:07:14 jblazek
89 ! Splitted up RFLO_ModInterfaces and ModInterfaces.
90 !
91 !******************************************************************************
92 
93 
94 
95 
96 
97 
subroutine genxstatnaming(global, fluidType)
subroutine readstatisticsection(global)