|
||||
File indexing completed on 2023-05-28 05:11:12 UTC
view on githubraw file Latest commit b4daa243 on 2023-05-28 03:53:22 UTCb4daa24319 Shre*0001 C Diagnostics Array Dimension 0002 C --------------------------- 0003 C ndiagMax :: maximum total number of available diagnostics 0004 C numlists :: maximum number of diagnostics list (in data.diagnostics) 0005 C numperlist :: maximum number of active diagnostics per list (data.diagnostics) 0006 C numLevels :: maximum number of levels to write (data.diagnostics) 0007 C numdiags :: maximum size of the storage array for active 2D/3D diagnostics 0008 C nRegions :: maximum number of regions (statistics-diagnostics) 0009 C nStats :: maximum number of statistics (e.g.: aver,min,max ...) 0010 C diagSt_size:: maximum size of the storage array for statistics-diagnostics 0011 C Note : may need to increase "numdiags" when using several 2D/3D diagnostics, 0012 C and "diagSt_size" (statistics-diags) since values here are deliberately small. 0013 INTEGER ndiagMax 0014 INTEGER numlists, numperlist, numLevels 0015 INTEGER numdiags 0016 INTEGER nRegions, nStats 0017 INTEGER diagSt_size 0018 PARAMETER( ndiagMax = 500 ) 0019 PARAMETER( numlists = 30, numperlist = 50, numLevels=2*Nr ) 0020 PARAMETER( numdiags = 20*Nr ) 0021 PARAMETER( nRegions = 0 , nStats = 4 ) 0022 PARAMETER( diagSt_size = 10*Nr ) 0023 0024 0025 CEH3 ;;; Local Variables: *** 0026 CEH3 ;;; mode:fortran *** 0027 CEH3 ;;; End: ***
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated from https://github.com/MITgcm/MITgcm by the 2.2.1-MITgcm-0.1 LXR engine. The LXR team |