Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
INRT_AugmentConSources.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: converts the transfers of primary quantities along Edges for each
26 ! cell into augmentations of RHS terms for all quantities, for an
27 ! interaction not involving Lagrangian particles
28 !
29 ! Description: none.
30 !
31 ! Input: iInrt = index of interaction
32 !
33 ! Output: augments region%levels(iLev)%...%rhs structures
34 !
35 ! Notes:
36 !
37 ! The RHS structures use opposite sign as the input source structure
38 !
39 !******************************************************************************
40 !
41 ! $Id: INRT_AugmentConSources.F90,v 1.3 2008/12/06 08:44:31 mtcampbe Exp $
42 !
43 ! Copyright: (c) 2003 by the University of Illinois
44 !
45 !******************************************************************************
46 
47 SUBROUTINE inrt_augmentconsources( region,iInrt )
48 
49  USE moddatatypes
50  USE moddatastruct, ONLY : t_region
51  USE modglobal, ONLY : t_global
52  USE moderror
54 
55  IMPLICIT NONE
56 
57 ! ... parameters
58  TYPE(t_region), INTENT(INOUT) :: region
59  INTEGER, INTENT(IN) :: iinrt
60 
61 ! ... local variables
62  CHARACTER(CHRLEN) :: rcsidentstring
63  TYPE(t_global), POINTER :: global
64 
65 !******************************************************************************
66 
67  rcsidentstring = '$RCSfile: INRT_AugmentConSources.F90,v $ $Revision: 1.3 $'
68 
69  global => region%global
70 
71  CALL registerfunction( global,'INRT_AugmentConSources',&
72  'INRT_AugmentConSources.F90' )
73 
74 ! begin -----------------------------------------------------------------------
75 
76 ! finalize --------------------------------------------------------------------
77 
78  CALL deregisterfunction( global )
79 
80 END SUBROUTINE inrt_augmentconsources
81 
82 !******************************************************************************
83 !
84 ! RCS Revision history:
85 !
86 ! $Log: INRT_AugmentConSources.F90,v $
87 ! Revision 1.3 2008/12/06 08:44:31 mtcampbe
88 ! Updated license.
89 !
90 ! Revision 1.2 2008/11/19 22:17:44 mtcampbe
91 ! Added Illinois Open Source License/Copyright
92 !
93 ! Revision 1.1 2004/12/01 21:56:09 fnajjar
94 ! Initial revision after changing case
95 !
96 ! Revision 1.5 2004/07/28 15:42:12 jferry
97 ! deleted defunct constructs: useDetangle, useSmokeDrag, useSmokeHeatTransfer
98 !
99 ! Revision 1.4 2004/03/02 21:48:09 jferry
100 ! First phase of replacing Detangle interaction
101 !
102 ! Revision 1.3 2003/09/25 15:48:43 jferry
103 ! implemented Boiling Regulation interaction
104 !
105 ! Revision 1.2 2003/03/11 16:09:39 jferry
106 ! Added comments
107 !
108 ! Revision 1.1 2003/03/04 22:12:35 jferry
109 ! Initial import of Rocinteract
110 !
111 !******************************************************************************
112 
113 
114 
115 
116 
117 
118 
subroutine registerfunction(global, funName, fileName)
Definition: ModError.F90:449
subroutine deregisterfunction(global)
Definition: ModError.F90:469
subroutine inrt_augmentconsources(region, iInrt)