Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
rocflo/BuildVersionString.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: Build version string for printing in header.
26 !
27 ! Description: none.
28 !
29 ! Input: none.
30 !
31 ! Output:
32 ! versionString = string containing version number and date.
33 !
34 ! Notes:
35 ! 1. The strings are NOT to be edited by anyone except the main code
36 ! developer.
37 ! 2. Marks Rocbuild program will edit the build string to insert a
38 ! build number or identifier
39 !
40 !******************************************************************************
41 !
42 ! $Id: BuildVersionString.F90,v 1.50 2008/12/06 08:44:25 mtcampbe Exp $
43 !
44 ! Copyright: (c) 2002 by the University of Illinois
45 !
46 !******************************************************************************
47 
48 SUBROUTINE buildversionstring( versionString )
49 
50  USE moddatatypes
51  IMPLICIT NONE
52 
53 ! ... parameters
54  CHARACTER(*) :: versionstring
55 
56 ! ... local variables
57  CHARACTER(LEN=2) :: major, minor, patch
58  CHARACTER(LEN=3) :: build
59  CHARACTER(CHRLEN) :: date
60 
61 !******************************************************************************
62 ! set strings: DO NOT EDIT UNLESS YOU ARE MAIN DEVELOPER
63 
64  major = '4'
65  minor = '2'
66  patch = '0'
67  build = '0' ! to be edited by Rocbuild
68 
69  date = '05/11/05'
70 
71 ! write into string
72 
73  WRITE(versionstring,'(A)') trim(major)//'.'//trim(minor)//'.'//trim(patch)
74  WRITE(versionstring,'(A)') 'Version: '//trim(versionstring)//'-'//trim(build)
75  WRITE(versionstring,'(A)') trim(versionstring)//', Date: '//trim(date)
76 
77 END SUBROUTINE buildversionstring
78 
79 !******************************************************************************
80 !
81 ! RCS Revision history:
82 !
83 ! $Log: BuildVersionString.F90,v $
84 ! Revision 1.50 2008/12/06 08:44:25 mtcampbe
85 ! Updated license.
86 !
87 ! Revision 1.49 2008/11/19 22:17:36 mtcampbe
88 ! Added Illinois Open Source License/Copyright
89 !
90 ! Revision 1.48 2005/05/11 20:21:18 wasistho
91 ! changed version
92 !
93 ! Revision 1.47 2004/11/29 22:44:35 wasistho
94 ! update v-s
95 !
96 ! Revision 1.46 2003/11/20 16:40:36 mdbrandy
97 ! Backing out RocfluidMP changes from 11-17-03
98 !
99 ! Revision 1.42 2003/10/01 23:52:10 jblazek
100 ! Corrected bug in moving noslip wall BC and grid speeds.
101 !
102 ! Revision 1.41 2003/08/28 20:05:39 jblazek
103 ! Added acceleration terms.
104 !
105 ! Revision 1.40 2003/08/25 21:51:24 jblazek
106 ! Full version of global grid motion scheme.
107 !
108 ! Revision 1.39 2003/08/11 21:51:18 jblazek
109 ! Added basic global grid smoothing scheme.
110 !
111 ! Revision 1.38 2003/07/03 21:48:45 jblazek
112 ! Implemented dual-time stepping.
113 !
114 ! Revision 1.37 2003/06/02 17:12:00 jblazek
115 ! Added computation of thrust.
116 !
117 ! Revision 1.36 2003/05/29 17:28:43 jblazek
118 ! Implemented Roe scheme.
119 !
120 ! Revision 1.35 2003/05/20 20:46:57 jblazek
121 ! Values in edge & corner cells now corrected at noslip and symmetry walls.
122 !
123 ! Revision 1.34 2003/05/19 21:18:21 jblazek
124 ! Automated switch to 0th-order extrapolation at slip walls and injection boundaries.
125 !
126 ! Revision 1.33 2003/05/15 02:57:03 jblazek
127 ! Inlined index function.
128 !
129 ! Revision 1.32 2003/05/06 20:05:39 jblazek
130 ! Corrected bug in grid motion (corner "averaging").
131 !
132 ! Revision 1.31 2003/04/10 00:30:06 jblazek
133 ! Corrected bug in grid movement algorithm.
134 !
135 ! Revision 1.30 2003/04/04 21:05:00 jblazek
136 ! Corrected bug in dumping out the solution.
137 !
138 ! Revision 1.29 2003/03/14 22:05:11 jblazek
139 ! Improved mesh motion algorithm - node movement exchaged between blocks.
140 !
141 ! Revision 1.28 2003/03/04 21:56:47 jblazek
142 ! Corrected bug for predictor-corrector iterations.
143 !
144 ! Revision 1.27 2003/02/28 21:04:27 jblazek
145 ! Corrected bug in send/recv of CE cells on single processor.
146 !
147 ! Revision 1.26 2003/02/14 22:32:36 jblazek
148 ! Finished implementation of corener and edge cells.
149 !
150 ! Revision 1.25 2003/02/03 19:20:47 jblazek
151 ! Added treatment of edge and corner cells for one processor.
152 !
153 ! Revision 1.24 2003/01/23 17:48:53 jblazek
154 ! Changed algorithm to dump convergence, solution and probe data.
155 !
156 ! Revision 1.23 2003/01/10 17:58:43 jblazek
157 ! Added missing explicit interfaces.
158 !
159 ! Revision 1.22 2002/12/27 22:07:14 jblazek
160 ! Splitted up RFLO_ModInterfaces and ModInterfaces.
161 !
162 ! Revision 1.21 2002/12/06 22:29:26 jblazek
163 ! Corrected bug for geometry exchange between minimal patches.
164 !
165 ! Revision 1.20 2002/10/25 18:36:47 jblazek
166 ! Replaced [io]stat=global%error with local errorFlag for Rocflo.
167 !
168 ! Revision 1.19 2002/10/23 18:43:24 jblazek
169 ! Changed temporary pointer arrays into allocatable arrays
170 ! in grid and solution I/O routines.
171 !
172 ! Revision 1.18 2002/10/16 18:30:38 jblazek
173 ! Within GenX, BC data at t=0 are updated in FlowSolver before calling
174 ! the time-stepping routine.
175 !
176 ! Revision 1.17 2002/10/12 03:20:50 jblazek
177 ! Replaced [io]stat=global%error with local errorFlag for Rocflo.
178 !
179 ! Revision 1.16 2002/10/04 19:33:18 jblazek
180 ! Corrected one more bug in GenX restart.
181 !
182 ! Revision 1.15 2002/10/03 21:25:39 jblazek
183 ! Changed init. of burnig boundaries for GenX.
184 !
185 ! Revision 1.14 2002/09/27 00:57:09 jblazek
186 ! Changed makefiles - no makelinks needed.
187 !
188 ! Revision 1.13 2002/09/20 22:22:36 jblazek
189 ! Finalized integration into GenX.
190 !
191 ! Revision 1.12 2002/09/05 17:40:20 jblazek
192 ! Variable global moved into regions().
193 !
194 ! Revision 1.11 2002/08/30 19:08:58 jblazek
195 ! Dimensions of work arrays now set in derivedInputValues.
196 !
197 ! Revision 1.10 2002/08/30 01:47:58 jblazek
198 ! Added support for moving grids.
199 !
200 ! Revision 1.9 2002/08/16 21:35:59 jblazek
201 ! Changed interface to MixtureProperties.
202 !
203 ! Revision 1.8 2002/08/15 19:48:05 jblazek
204 ! Implemented grid deformation capability.
205 !
206 ! Revision 1.7 2002/08/07 21:07:55 jblazek
207 ! Executables are left in the top-level directory instead of $(HOME)/bin.
208 !
209 ! Revision 1.6 2002/07/25 01:00:08 jblazek
210 ! Option for TVD type pressure switch.
211 !
212 ! Revision 1.5 2002/07/22 22:59:11 jblazek
213 ! Some more clean up.
214 !
215 ! Revision 1.4 2002/07/16 21:34:37 jblazek
216 ! Prefixed screen output with SOLVER_NAME.
217 !
218 ! Revision 1.3 2002/07/05 23:20:46 jblazek
219 ! Corrected bug in perfgasDependentVars.F90; did some cosmetics.
220 !
221 ! Revision 1.2 2002/06/22 01:13:38 jblazek
222 ! Modified interfaces to BC routines.
223 !
224 ! Revision 1.1 2002/06/13 23:05:42 jblazek
225 ! Added version string.
226 !
227 !******************************************************************************
228 
229 
230 
231 
232 
233 
void build(std::vector< Point > &v)
Definition: kdtree_d.h:989
Definition: patch.h:74
subroutine buildversionstring(versionString)