Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Fluid_finalize.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: delete data windows.
26 !
27 ! Description: none.
28 !
29 ! Input: globalGenx = global data structure (contains name of the window)
30 !
31 ! Output: none.
32 !
33 ! Notes: none.
34 !
35 !******************************************************************************
36 !
37 ! $Id: Fluid_finalize.F90,v 1.3 2008/12/06 08:44:00 mtcampbe Exp $
38 !
39 ! Copyright: (c) 2002 by the University of Illinois
40 !
41 !******************************************************************************
42 
43 SUBROUTINE fluid_finalize( globalGenx )
44 
45  USE modrocstar, ONLY : t_globalgenx
46 #ifdef RFLO
48 #endif
49 #ifdef RFLU
51 #endif
52 
53  IMPLICIT NONE
54  include 'roccomf90.h'
55 
56 ! ... parameters
57  TYPE(t_globalgenx), POINTER :: globalgenx
58 
59 !******************************************************************************
60 
61 #ifdef RFLO
62  CALL rflo_endflowsolver( globalgenx%regions )
63 #endif
64 #ifdef RFLU
65  CALL rflu_endflowsolver(globalgenx%levels)
66 #endif
67 
68  CALL com_delete_window( trim(globalgenx%global%winName)//'_surf' )
69  CALL com_delete_window( trim(globalgenx%global%winName)//'_vol' )
70 
71 END SUBROUTINE fluid_finalize
72 
73 !******************************************************************************
74 !
75 ! RCS Revision history:
76 !
77 ! $Log: Fluid_finalize.F90,v $
78 ! Revision 1.3 2008/12/06 08:44:00 mtcampbe
79 ! Updated license.
80 !
81 ! Revision 1.2 2008/11/19 22:17:14 mtcampbe
82 ! Added Illinois Open Source License/Copyright
83 !
84 ! Revision 1.1 2004/12/01 21:23:41 haselbac
85 ! Initial revision after changing case
86 !
87 ! Revision 1.6 2003/11/20 16:40:34 mdbrandy
88 ! Backing out RocfluidMP changes from 11-17-03
89 !
90 ! Revision 1.3 2002/10/07 14:09:53 haselbac
91 ! Added RFLU/RFLO distinction
92 !
93 ! Revision 1.2 2002/09/25 17:55:41 jblazek
94 ! Added call to EndFlowSolver.
95 !
96 ! Revision 1.1 2002/09/20 22:22:34 jblazek
97 ! Finalized integration into GenX.
98 !
99 !******************************************************************************
100 
101 
102 
103 
104 
105 
subroutine rflo_endflowsolver(regions)
subroutine fluid_finalize(globalGenx)
subroutine rflu_endflowsolver(levels)