xref: /phasta/phSolver/common/common.h (revision 96040df829d9dc51fd7a97d28ea5d8fb6af07398)
1 c----------------------------------------------------------------------
2 c
3 c This file contains the common blocks and the data declaration needed
4 c for the routines.
5 c
6 c Input variables that have been previously declared in common_c.h have to be
7 c re-declared here, in a consistant block.
8 c
9 c Zdenek Johan, Winter 1991.  (Fortran 90)
10 c----------------------------------------------------------------------
11 
12 	IMPLICIT REAL*8 (a-h,o-z)
13 c
14 c.... parameters  IF YOU CHANGE THES YOU HAVE TO CHANGE THEM IN
15 c                  common_c.h ALSO
16 c
17         parameter     ( MAXBLK = 50000, MAXTS = 100)
18         parameter     ( MAXSH = 32, NSD = 3 , NSDSQ = 9)
19 c
20 c  The five types of region topology are  1= Tet, 2=Hex, 3= Wedge (tri-start),
21 c                                         4= Wedge (quad-first) 5=pyramid
22 c
23 c  The two types of face topology are  1= tri, 2=quad
24 c
25         parameter     ( MAXTOP = 6, MAXSURF=30 )
26 
27 c the common block nomodule holds all the things which have been removed
28 c from different modules
29 
30         integer seqsize, stepseq
31         integer consrv_sclr_conv_vel
32         integer spongecontinuity, spongemomentum1, spongemomentum2
33         integer spongeenergy, spongemomentum3
34 	common /amgvarr/strong_eps,ramg_eps,ramg_relax,ramg_trunc,
35      &              ramg_chebyratio
36 	common /amgvari/irun_amg,irun_amg_prec,
37      &                  iamg_verb,
38      &                  iamg_neg_sten,iamg_nlevel,
39      &                  iamg_c_solver,
40      &                  iamg_init,
41      &        iamg_setup_frez,
42      &        iamg_interp,maxnev,maxncv,iamg_smoother,mlsdeg,
43      &        iamg_reduce
44 
45         common /nomodule/ bcttimescale,ValueListResist(0:MAXSURF),
46      &  rhovw,thicknessvw, evw, rnuvw, rshearconstantvw, betai,
47      &  icardio, itvn, ipvsq, numResistSrfs, nsrflistResist(0:MAXSURF),
48      &  numImpSrfs, nsrflistImp(0:MAXSURF),impfile,
49      &  numRCRSrfs, nsrflistRCR(0:MAXSURF),ircrfile,
50      &  ideformwall, iwallmassfactor, iwallstiffactor, iviscflux
51         common /sequence/ seqsize, stepseq(100)
52 	common /workfc/ master, numpe, myrank
53 	common /fronts/ maxfront, nlwork
54 	common /newdim/ numper, nshgt, nshg0
55 	common /timer4/ birth, death, comtim
56         common /extrat/ ttim(100)
57         common /spongevar/ zoutSponge, radSponge, zinSponge,
58      &            grthOSponge,grthISponge,betamax,
59      &            spongecontinuity, spongemomentum1, spongemomentum2,
60      &            spongeenergy, spongemomentum3
61         common /turbvar/ eles,ylimit(3,9), rampmdot(2,3),
62      &                   rmutarget, pzero,  wtavei,
63      &                   dtavei, dke,  fwr1, flump, DES_SA_hmin,
64      &                   ierrcalc, ihessian, itwmod, ngaussf,idim,
65      &                   nlist, nintf(MAXTOP)
66         common /turbvari/iRANS, iLES, idistcalc, isubmod, ifproj,
67      &                   i2filt, modlstats, idis, nohomog,
68      &                   ierrsmooth, iramp
69         common /mpistats/iISend, iISendScal, iIRecv, iIRecvScal,
70      &                   iWaitAll,iWaitAllScal, iAllR, iAllRScal,
71      &                   impistat, impistat2, rmpitmr,
72      &                   rISend, rISendScal, rIRecv, rIRecvScal,
73      &                   rWaitAll, rWaitAllScal, rAllR, rAllRScal,
74      &                   rCommu, rCommuScal
75 
76         common /memstats/rheap,rheapavail,rstack,rstackavail,rshared,
77      &                   rpersist,rguard,rmmap,rmemstats
78 
79         common /spebcvr/ irscale, intpres, plandist,
80      &            thetag, ds, tolerence, radcyl, rbltin, rvscal
81 
82         common /sclrs/ scdiff(5),tdecay,nsclr,isclr,nsolt,nosource,
83      &            consrv_sclr_conv_vel
84 c
85 c.... common blocks
86 c
87       parameter (MAXQPT = 125)
88 c
89 c.... common blocks for hierarchic basis functions
90 c
91       common /intpt/  Qpt (MAXTOP ,4,MAXQPT), Qwt (MAXTOP ,MAXQPT),
92      &                Qptb(MAXTOP,4,MAXQPT),  Qwtb(MAXTOP,MAXQPT),
93      &                nint(MAXTOP),           nintb(MAXTOP),
94      &                ngauss,                 ngaussb,   intp,
95      &                   maxnint
96 
97 c nsrflist is a binary switch that tells us if a given srfID should be
98 c included in the consistent flux calculation.  It starts from zero
99 c since we need to be able to handle/ignore surfaces with no srfID attached
100 c
101 c flxID(numfluxes,nIDs+1)
102 c numfluxes = area, mass, fx, fy, fz, heat, scalar_flux_{1,2,3,4}
103 c nIDs currently set to MAXSURF, each surface has its own
104 c
105         common /aerfrc/ flxID(10,0:MAXSURF), Force(3),HFlux,
106      &                  nsrflist(0:MAXSURF), isrfIM,
107      &                  flxIDsclr(4,MAXSURF),
108      &                  irankfilesforce(0:MAXSURF)
109 c
110         common /astore/ a(100000)
111 c
112         common /blkdat/ lcblk(10,MAXBLK+1),      lcblkb(10,MAXBLK+1)
113 c
114         common /mbndnod/ mnodeb(9,8,3)
115 c
116         common /conpar/ numnp,  numel,  numelb, numpbc, nen,    nfaces,
117      &                  numflx, ndof,   iALE,   icoord, navier,
118      &                  irs,    iexec,  necho,  ichem,  iRK,    nedof,
119      &                  nshg,   nnz,    istop,  nflow,  nnz_tot, idtn
120 
121 c...........................................................................
122         common /ctrlvari/ iI2Binlet, isetOutPres, isetInitial
123 
124         real*8 inletVelX
125         common /ctrlvar/  inletVelX,   outPres1,
126      &                    xvel_ini,    yvel_ini,    zvel_ini,
127      &                    temp_ini,    pres_ini,    evis_ini
128 c...........................................................................
129 
130 c
131         common /levlset/ epsilon_ls, epsilon_lsd, dtlset, iLSet,
132      &                   ivconstraint, iExpLSSclr1, iExpLSSclr2
133 
134 c
135         common /shpdat/ nshape, nshapeb, maxshb,
136      &                  nshl, nshlb,nfath,  ntopsh,  nsonmax
137 c
138         common /datpnt/ mshp,   mshgl,  mwght,  mshpb,  mshglb, mwghtb,
139      &                  mmut,   mrhot,  mxst
140 c
141         common /melmcat/ mcsyst, melCat, nenCat(8,3),    nfaCat(8,3)
142 c
143         common /elmpar/ lelCat, lcsyst, iorder, nenb,
144      &                  nelblk, nelblb, ndofl,  nsymdl, nenl,   nfacel,
145      &                  nenbl,  intind, mattyp
146 c
147 
148         integer EntropyPressure
149 
150         common /genpar/ E3nsd,  I3nsd,  nsymdf, ndofBC, ndiBCB, ndBCB,
151      &                  Jactyp, jump,   ires,   iprec,  iprev,  ibound,
152      &                  idiff,  lhs,    itau,   ipord,  ipred,  lstres,
153      &                  iepstm, dtsfct, taucfct, ibksiz, iabc, isurf,
154      &                  idflx,  Bo,     EntropyPressure, irampViscOutlet,
155      &                  istretchOutlet, iremoveStabTimeTerm
156 
157 c
158         common /inpdat/ epstol(6),  Delt(MAXTS),    CFLfl(MAXTS),
159      &                  CFLsl(MAXTS),   nstep(MAXTS),   niter(MAXTS),
160      &                  impl(MAXTS),    rhoinf(MAXTS),
161      &                  LHSupd(6),  loctim(MAXTS),  deltol(MAXTS,2)
162 c
163         common /intdat/ intg(2,MAXTS),  intpt(3),       intptb(3)
164 c
165         common /mintpar/ indQpt(3,3,4),  numQpt(3,3,4),
166      &                  intmax
167 c
168         common /mio    / iin,    igeom,  ipar,   ibndc,  imat,   iecho,
169      &                  iout,   ichmou, irstin, irstou, ihist,  iflux,
170      &                  ierror, itable, iforce, igraph, itime
171 c
172 c /*         common /andres/ fwr1,ngaussf,idim,nlist */
173 
174         character*80    fin,    fgeom,  fpar,   fbndc,  fmat,   fecho,
175      &                  frstin, frstou, fhist,  ferror, ftable, fforce,
176      &                  fgraph, ftime,  iotype
177         common /mioname/ fin,    fgeom,  fpar,   fbndc,  fmat,   fecho,
178      &                  frstin, frstou, fhist,  ferror, ftable, fforce,
179      &                  fgraph, ftime
180 c
181         common /itrpar/ eGMRES, lGMRES, iKs,    ntotGM
182 c
183         common /itrpnt/ mHBrg,  meBrg,  myBrg,  mRcos,  mRsin
184 c
185         REAL*8          Nh, Msh
186         common /mmatpar/ pr,     Planck, Stefan, Nh,     Rh,     Rgas,
187      &                  gamma,  gamma1, s0,     const,  xN2,    xO2,
188      &                  yN2,    yO2,    Msh(5), cpsh(5),s0sh(5),h0sh(5),
189      &                  Rs(5),  cps(5), cvs(5), h0s(5), Trot(5),sigs(5),
190      &                  Tvib(5),g0s(5), dofs(5),ithm
191 c
192         logical         mexist
193         common /matdat/ datmat(3,7,MAXTS),      matflg(6,MAXTS),
194      &                  nummat,                 mexist
195 c
196 cMR CHANGE
197 c         common /outpar/ ro,     vel,    temper, press,  entrop, ntout,
198 c      &                  ioform, iowflux, iofieldv, iotype, ioybar,
199 c      &                  nstepsincycle, nphasesincycle, ncycles_startphaseavg
200         common /outpar/ ro,     vel,    temper, press,  entrop, ntout,
201      &                  ioform, iowflux, iofieldv, iotype, ioybar,
202      &                  nstepsincycle, nphasesincycle,
203      &                  ncycles_startphaseavg, ivort, icomputevort,
204      &                  nsynciofiles, nsynciofieldswriterestart,
205      &                  iv_rankpercore, iv_corepernode
206 cMR CHANGE END
207 
208 c
209         common /point / mbeg,   mend,   mprec
210 c
211         common /precis/ epsM,   iabres
212 c
213         common /propar/ npro
214 c
215         common /resdat/ resfrt
216 c
217         common /solpar/ imap,   ivart,  iDC,    iPcond, Kspace, nGMRES,
218      &                  iconvflow, iconvsclr, idcsclr(2)
219 c
220         common /msympar/ indsym(5,5)
221 c
222         common /timdat/ time,   CFLfld, CFLsld, Dtgl,   Dtmax,  alpha,
223      &                  etol,   lstep,  ifunc,  itseq,  istep,  iter,
224      &                  nitr,   almi,   alfi,   gami,   flmpl,  flmpr,
225      &                  dtol(2), iCFLworst, lskeep
226 c
227         common /timpar/ LCtime, ntseq
228 c
229         common /incomp/ numeqns(100), minIters, maxIters,
230      &                  iprjFlag,     nPrjs,    ipresPrjFlag, nPresPrjs,
231      &                  prestol,      statsflow(6), statssclr(6),
232      &                  iverbose
233 c
234         character*8     ccode
235         common /mtimer1/ ccode(13)
236 c
237         integer       flops,  gbytes, sbytes
238         common /mtimer2/ flops,  gbytes, sbytes, iclock, icd,    icode,
239      &                  icode2, icode3
240 c
241         common /timer3/ cpu(11),        cpu0(11),       nacess(11)
242 c
243         character*80    title,  ititle
244         common /title / title,  ititle
245 c
246         character*8     machin
247         parameter     ( machin = 'RS/6000 ' )
248         parameter     ( machfl = 4 )
249 
250         parameter
251      &           ( zero   = 0.0000000000000000000000000000000d0,
252      &             pt125  = 0.1250000000000000000000000000000d0,
253      &             pt25   = 0.2500000000000000000000000000000d0,
254      &             pt33   = 0.3333333333333333333333333333333d0,
255      &             pt39   = 0.3968502629920498686879264098181d0,
256      &             pt5    = 0.5000000000000000000000000000000d0,
257      &             pt57   = 0.5773502691896257645091487805020d0,
258      &             pt66   = 0.6666666666666666666666666666667d0,
259      &             pt75   = 0.7500000000000000000000000000000d0,
260      &             one    = 1.0000000000000000000000000000000d0,
261      &             sqt2   = 1.4142135623730950488016887242097d0,
262      &             onept5 = 1.5000000000000000000000000000000d0,
263      &             two    = 2.0000000000000000000000000000000d0,
264      &             three  = 3.0000000000000000000000000000000d0,
265      &             four   = 4.0000000000000000000000000000000d0,
266      &             five   = 5.0000000000000000000000000000000d0,
267      &             pi     = 3.1415926535897932384626433832795d0,
268      &             inv1024sq = 9.5367431640625e-7)
269 
270 c
271 c----------------------------------------------------------------------
272 c
273 c.... element pointers
274 c
275 c mmat   (MAXBLK)  : pointer to interior element material number
276 c mmatb  (MAXBLK)  : pointer to boundary element material number
277 c mien   (MAXBLK)  : pointer to ien array
278 c mienb  (MAXBLK)  : pointer to ienb array
279 c miBCB  (MAXBLK)  : pointer to iBCB array
280 c mDt    (MAXBLK)  : pointer to Dt array
281 c mDC    (MAXBLK)  : pointer to DC array
282 c mBCB   (MAXBLK)  : pointer to BCB array
283 c mstiff (MAXBLK)  : pointer to stiff array
284 c
285 c----------------------------------------------------------------------
286 c
287 c.... common /aerfrc/   : aerodynamic forces
288 c
289 c Force(3)      : components of the aerodynamic forces
290 c HFlux         : total heat flux
291 c
292 c----------------------------------------------------------------------
293 c
294 c.... common /astore/   : the dynamic memory allocation area
295 c
296 c a(...)        : the blank array used for front-end data storage
297 c
298 c----------------------------------------------------------------------
299 c
300 c.... common /blkdat/   : blocking data
301 c
302 c lcblk  (10,MAXBLK+1) : blocking data for the interior elements
303 c lcblkb (10,MAXBLK+1) : blocking data for the boundary elements
304 c
305 c----------------------------------------------------------------------
306 c
307 c.... common /bndnod/   : boundary nodes of boundary elements
308 c
309 c mnodeb (9,8,3) : boundary nodes of each element category and dimension
310 c
311 c----------------------------------------------------------------------
312 c
313 c.... common /conpar/   : input constants
314 c
315 c numnp         : number of nodal points
316 c numel         : number of elements
317 c numelb        : number of boundary elements
318 c numpbc        : number of nodes having a boundary condition
319 c nen           : maximum number of element nodes
320 c nfaces        : maximum number of element faces
321 c nsd           : number of space dimensions
322 c numflx        : number of flux boundary nodes
323 c ndof          : number of degrees of freedom per node
324 c iALE          : ALE formulation flag
325 c icoord        : coordinate system flag
326 c navier        : Navier-Stokes calculation flag
327 c irs           : restart option
328 c iexec         : execute flag
329 c necho         : input echo parameter
330 c ichem         : equilibrium chemistry flag (for outchem.step dump)
331 c iRK           : Runge-Kutta flag
332 c nshg          : global number of shape functions (degrees of freedom,
333 c                 or equations). Computed from the specified p-order,
334 c                 the number of edges, and the number of faces (in the
335 c                 entire mesh)
336 c
337 c----------------------------------------------------------------------
338 c
339 c.... common /datpnt/   : front-end data pointers
340 c
341 c mshp          : pointer to shape-functions
342 c mshgl         : pointer to local-grad-shape-functions
343 c mwght         : pointer to quadrature weights
344 c mshpb         : pointer to shape-functions of boundary elements
345 c mshglb        : pointer to local-grad-shape-functions of bound. elem.
346 c mwghtb        : pointer to quadrature weights of bound. elements
347 c mmut          : pointer to table mu  = mu  (p,T)
348 c mrhot         : pointer to table rho = rho (p,T)
349 c mxst          : pointer to table xs  = xs  (p,T)
350 c
351 c----------------------------------------------------------------------
352 c
353 c.... common /elmcat/   : element category information
354 c
355 c mcsyst        : maximum number of element coordinate system
356 c melCat        : maximum number of element categories
357 c nenCat (8,3)  : number of nodes for each category and dimension
358 c nfaCat (8,3)  : number of faces for each category and dimension
359 c
360 c----------------------------------------------------------------------
361 c
362 c.... common /elmpar/   : element parameters
363 c
364 c lelCat        : element category (P1, Q1, P2, Q2, etc.)
365 c lcsyst        : element coordinate system
366 c iorder        : element order (=k for Pk and Qk)
367 c nenb          : number of element nodes per boundary sides
368 c maxsh         : total number integration points
369 c maxshb        : total number integration points of boundary elements
370 c nelblk        : number of element blocks
371 c nelblb        : number of boundary element blocks
372 c ndofl         : number of degrees of freedom (for current block)
373 c nsymdl        : number of d.o.f for symm. storage (for current block)
374 c nenl          : number of element nodes (for current block)
375 c nfacel        : number of element faces (for current block)
376 c nenbl         : number of boundary element nodes
377 c intind        : integration data index
378 c nintg         : number of integration points
379 c mattyp        : material type ( = 0 for fluid; = 1 for solid )
380 c
381 c----------------------------------------------------------------------
382 c
383 c.... common /genpar/   : control parameters
384 c
385 c E3nsd         : NSD .eq. 3 flag; 0. for 2D, 1. for 3D
386 c I3nsd         : NSD .eq. 3 flag; 0  for 2D, 1  for 3D
387 c nsymdf        : number of d.o.f.'s in symm. storage (= ndof*(ndof+1)/2)
388 c ndofBC        : dimension size of the boundary condition array BC
389 c ndiBCB        : dimension size of the boundary condition array iBCB
390 c ndBCB         : dimension size of the boundary condition array BCB
391 c Jactyp        : Jacobian type flag
392 c jump          : jump term computation flag
393 c ires          : residual type computation flag
394 c iprec         : block-diagonal preconditioner flag
395 c iprev         : ypl array allocation flag
396 c ibound        : boundary element flag
397 c idiff         : diffusive flux vector flag
398 c                 ( = 0 not used; = 1 global reconstruction )
399 c itau          : type of tau to be used
400 c
401 c----------------------------------------------------------------------
402 c
403 c.... common /inpdat/   : time sequence input data
404 c
405 c epstol (MAXTS)  : tolerance for GMRES solvers
406 c Delt   (MAXTS)  : global time step
407 c CFLfl  (MAXTS)  : CFL number for fluid flow
408 c CFLsl  (MAXTS)  : CFL number for structural heating
409 c nstep  (MAXTS)  : number of time steps
410 c niter  (MAXTS)  : number of iterations per time step
411 c impl   (MAXTS)  : solver flag
412 c iturb  (MAXTS)  : turbulence model flag
413 c rhoinf (MAXTS)  : time integration spectral radius paramter
414 c                             (0=Gears       1= trapezoidal rule)
415 c LHSupd (MAXTS)  : LHS/preconditioner update
416 c loctim (MAXTS)  : local time stepping flag
417 c
418 c----------------------------------------------------------------------
419 c
420 c.... common /intdat/   : integration data
421 c
422 c intg  (2,MAXTS) : integration parameters
423 c intpt (3)       : integration pointers
424 c intptb(3)       : integration pointers of boundary elements
425 c
426 c----------------------------------------------------------------------
427 c
428 c.... common /shpdat/   : hierarchic shape function quadrature data
429 c
430 c Qpt  (3,MAXQPT)  : interior element quadrature points (xi,eta,zeta)
431 c Qwt  (MAXQPT)    : interior element quad. weights
432 c Qptb (2,MAXQPT)  : boundary element quad. pnts.
433 c Qwtb (MAXQPT)    : boundary element quad. weights
434 c nshape           : number of interior element shape functions
435 c nshapeb          :   "    "  boundary  "        "       "
436 c ngauss           : number of interior element integration points
437 c ngaussb          :   "    "  boundary  "        "           "
438 c----------------------------------------------------------------------
439 c
440 c.... common /intpar/   : integration parameters
441 c
442 c Qpt   (4,*)   : xi, eta, zeta, weight of quadrature points
443 c indQpt(3,3,4) : index to quadrature points for a given rule
444 c numQpt(3,3,4) : number of quadrature points for a given rule
445 c intmax        : number of allowable spatial integ. points per nsd
446 c
447 c----------------------------------------------------------------------
448 c
449 c.... common /io    /   : io channels
450 c
451 c iin           : input  (main parameters)          [INPUT.DAT]
452 c igeom         : input  (problem geometry)         [GEOM.DAT]
453 c ipar          : in/out (spectral mapping)         [PARTITION.DAT]
454 c ibndc         : input  (problem boundary cond.)   [BC.DAT]
455 c imat          : input  (element material types)   [MATERIAL.DAT]
456 c iecho         : output (echo of input)            [ECHO.DAT]
457 c iout          : output (result output)            [OUTPUT.lstep]
458 c ichmou        : output (chemistry output)         [OUTCHM.lstep]
459 c irstin        : input  (input restart)            [RESTAR.INP]
460 c irstou        : output (output restart)           [RESTAR.OUT]
461 c ihist         : output (history output)           [HISTOR.DAT]
462 c iflux         : output (boundary flux)            [FLUX.lstep]
463 c ierror        : output (error messages)           [ERROR.DAT]
464 c itable        : input  (equilibrium chemistry)    [TABLE.DAT]
465 c iforce        : output (aerodynamic forces)       [FORCES.DAT]
466 c
467 c----------------------------------------------------------------------
468 c
469 c.... common /ioname/   : io file names
470 c
471 c fin           : input.dat
472 c fgeom         : geom.dat
473 c fpar          : partition.dat
474 c fbndc         : bc.dat
475 c fmat          : material.dat
476 c fecho         : echo.dat
477 c frstin        : restar.inp
478 c frstou        : restar.out
479 c fhist         : histor.dat
480 c ferror        : error.dat
481 c ftable        : table.dat
482 c fforce        : forces.dat
483 c
484 c----------------------------------------------------------------------
485 c
486 c.... common /itrpar/   : Preconditioned GMRES parameters
487 c
488 c eGMRES        : finite difference interval
489 c lGMRES        : number of GMRES cycles
490 c iKs           : current Krylov vector
491 c ntotGM        : total number of GMRES iterations
492 c
493 c----------------------------------------------------------------------
494 c
495 c.... common /itrpnt/   : Preconditioned GMRES array pointers
496 c
497 c mHBrg         : pointer to Hessenberg matrix
498 c meBrg         : pointer to Hessenberg's RHS matrix
499 c myBrg         : pointer to minimize solution matrix
500 c mRcos         : pointer to Rotation Cosine of QR algorithm
501 c mRsin         : pointer to Rotation Sine   of QR algorithm
502 c
503 c----------------------------------------------------------------------
504 c
505 c.... common /matpar/   : material constants
506 c
507 c pr            : Prandtl number
508 c Planck        : Planck's constant
509 c Stefan        : Stefan's constant (for radiation)
510 c Nh            : Avogadro's number
511 c Rh            : universal gas constant
512 c Rgas          : specific gas constant
513 c gamma         : specific heat ratio
514 c gamma1        : gamma - 1
515 c s0            : reference specific entropy
516 c const         : special constant
517 c xN2           : mole fraction of diatomic nitrogen
518 c xO2           : mole fraction of diatomic oxygen
519 c yN2           : mole fraction of diatomic nitrogen
520 c yO2           : mole fraction of diatomic oxygen
521 c Msh  (5)      : molar mass of species
522 c cpsh (5)      : molar heat at constant pressure of species
523 c s0sh (5)      : molar reference entropy of species
524 c h0sh (5)      : molar heat of formation of species
525 c Rs   (5)      : specific gas constant of species
526 c cps  (5)      : specific heat at constant pressure of species
527 c cvs  (5)      : specific heat at constant volume of species
528 c h0s  (5)      : specific heat of formation of species
529 c Trot (5)      : characteristic rotational temperature of species
530 c sigs (5)      : symmetry factor of species
531 c Tvib (5)      : characteristic vibrational temperature of species
532 c g0s  (5)      : ground degeneracy of electronic energy
533 c dofs (5)      : degrees of freedom of species
534 c ithm          : thermodynamic property flag
535 c
536 c----------------------------------------------------------------------
537 c
538 c.... common /matdat/   : material data
539 c
540 c datmat (3,5,2) : material data
541 c matflg (5,100)   : material type flag
542 c nummat           : number of materials
543 c mexist           : flag indicating the presence of MATERIAL.DAT
544 c
545 c----------------------------------------------------------------------
546 c
547 c.... common /outpar/   : output parameters
548 c
549 c ro            : density     rescaling factor for output
550 c vel           : velocity    rescaling factor for output
551 c temper        : temperature rescaling factor for output
552 c press         : pressure    rescaling factor for output
553 c entrop        : entropy     rescaling factor for output
554 c ntout         : number of steps between consecutive printouts
555 c ioform        : output I/O format
556 c
557 c----------------------------------------------------------------------
558 c
559 c.... common /point /   : dynamic storage pointer management data
560 c
561 c mbeg          : pointer to the beginning of the free storage
562 c mend          : pointer to the end of the storage
563 c mprec         : precision of the floating point data
564 c
565 c----------------------------------------------------------------------
566 c
567 c.... common /precis/   : finite difference interval data
568 c
569 c epsM          : square root of machine precision
570 c iabres        : absolute value residual flag
571 c
572 c----------------------------------------------------------------------
573 c
574 c....common /propar/    : processor related information
575 c
576 c npro          : number of virtual processors for the current block
577 c
578 c----------------------------------------------------------------------
579 c
580 c....common /resdat/    : residual statistics data
581 c
582 c resfrt        : first residual of convergence
583 c
584 c----------------------------------------------------------------------
585 c
586 c.... common /solpar/   : solution parameters
587 c
588 c imap          : permutation mapping flag
589 c ivart         : variational formulation type
590 c iDC           : DC type
591 c iPcond        : type of preconditioner
592 c Kspace        : dimension of Krylov space
593 c nGMRES        : maximum number of GMRES iterations
594 c
595 c----------------------------------------------------------------------
596 c
597 c.... common /sympar/   : symmetric storage parameters
598 c
599 c indsym (5,5)  : mapping from 2D storage to symmetric one
600 c
601 c----------------------------------------------------------------------
602 c
603 c.... common /timdat/   : time data
604 c
605 c time          : current run time
606 c CFLfld        : CFL number for fluid flow
607 c CFLsld        : CFL number for structural heating
608 c Dtgl          : inverse of global time step
609 c Dtmax         : maximum delta-time
610 c alpha         : trapezoidal rule parameter
611 c etol          : epsilon tolerance for GMRES
612 c lstep         : current time step
613 c ifunc         : func. eval. counter (=niter*(lstep-lstep0) + iter)
614 c itseq         : sequence number
615 c istep         : step number (reseted at the beginning of the run)
616 c iter          : iteration number
617 c nitr          : number of multi-corrector iterations for this sequence
618 c
619 c----------------------------------------------------------------------
620 c
621 c.... common /timpar/   : time integration parameters
622 c
623 c LCtime        : local time stepping flag
624 c ntseq         : number of time sequences
625 c
626 c----------------------------------------------------------------------
627 c
628 c.... common /timer1/   : timer parameters
629 c.... common /timer2/   : timer parameters
630 c.... common /timer3/   : timer parameters
631 c
632 c ccode(13)     : timing entities codes
633 c flops         : flop counter
634 c gbytes        : byte counter for gather operation
635 c sbytes        : byte counter for scatter operation
636 c iclock        : wall-clock time (in milliseconds)
637 c icd           : number of timing entities
638 c icode         : current timer code
639 c icode2        : last timer code
640 c icode3        : next-to-last timer code
641 c cpu(11)       : cpu time of each entity
642 c cpu0(11)      : initial cpu time of each entity
643 c nacess(11)    : number of times each entity is accessed
644 c
645 c----------------------------------------------------------------------
646 c
647 c.... common /title /   : problem title
648 c
649 c title         : problem title
650 c ititle        : problem title (with form feed)
651 c
652 c----------------------------------------------------------------------
653 c
654 c.... common /avging / : nfath
655 c
656 c nfath         : total number of global fathers over which certain
657 c                 quantities will be averaged
658 c
659 c----------------------------------------------------------------------
660 c
661 c.... parameters        : machine data
662 c
663 c machin        : machine type
664 c                  (set parameter)
665 c machfl        : single precision floating point lenght in bytes
666 c                  (set parameter)
667 c
668 c----------------------------------------------------------------------
669 c
670 c.... parameters        : useful constants
671 c
672 c zero          : 0.0
673 c pt125         : 0.125
674 c pt25          : 0.25
675 c pt33          : 0.33 (1/3)
676 c pt39          : 2^(-4/3)
677 c pt5           : 0.5
678 c pt57          : 1/sqrt(3)
679 c pt66          : 0.66 (2/3)
680 c pt75          : 0.75
681 c one           : 1.0
682 c sqt2          : sqrt(2)
683 c onept5        : 1.5
684 c two           : 2.0
685 c three         : 3.0
686 c four          : 4.0
687 c five          : 5.0
688 c pi            : the magical number :-)
689 c
690 c----------------------------------------------------------------------
691 c
692 c Zdenek Johan, Winter 1991.
693 c
694 c----------------------------------------------------------------------
695