├── .gitattributes ├── .gitconfig ├── .gitignore ├── Commons ├── deelx │ └── deelx.h ├── dlfcn │ ├── include │ │ └── dlfcn.h │ └── lib │ │ ├── dl.dll │ │ ├── dl.lib │ │ ├── dld.dll │ │ └── dld.lib ├── metis │ ├── include │ │ └── metis.h │ └── lib │ │ ├── metis-old.lib │ │ ├── metis.dll │ │ ├── metis.lib │ │ ├── metisd.dll │ │ └── metisd.lib ├── mpi │ ├── include │ │ ├── 32 │ │ │ ├── module.F │ │ │ ├── mpi.h │ │ │ ├── mpiL.h │ │ │ ├── mpif.h │ │ │ ├── mpio.h │ │ │ └── mpiof.h │ │ ├── 64 │ │ │ ├── module.F │ │ │ ├── mpi.h │ │ │ ├── mpiL.h │ │ │ ├── mpif.h │ │ │ ├── mpio.h │ │ │ └── mpiof.h │ │ ├── mpi.h │ │ ├── mpiL.h │ │ ├── mpio.h │ │ └── mpiof.h │ └── lib │ │ ├── libcoll64.dll │ │ ├── libhwid64.dll │ │ ├── libhwloc-5.dll │ │ ├── libmpiautodbl_seti8_64.dll │ │ ├── libmpiautodbl_seti8_64.lib │ │ ├── libmpiautodbl_seti8r8_64.dll │ │ ├── libmpiautodbl_seti8r8_64.lib │ │ ├── libmpiautodbl_setr8_64.dll │ │ ├── libmpiautodbl_setr8_64.lib │ │ ├── libmpio64.dll │ │ ├── libmpio64.lib │ │ ├── libmpirun64.dll │ │ ├── libmtcoll64.dll │ │ ├── libmtmpiautodbl_seti8_64.dll │ │ ├── libmtmpiautodbl_seti8_64.lib │ │ ├── libmtmpiautodbl_seti8r8_64.dll │ │ ├── libmtmpiautodbl_seti8r8_64.lib │ │ ├── libmtmpiautodbl_setr8_64.dll │ │ ├── libmtmpiautodbl_setr8_64.lib │ │ ├── libmtmpio64.dll │ │ ├── libmtmpio64.lib │ │ ├── libmtpcdmpi64.dll │ │ ├── libmtpcdmpi64.lib │ │ ├── libmtpcmpi64.dll │ │ ├── libmtpcmpi64.lib │ │ ├── libpcdmpi64.dll │ │ ├── libpcdmpi64.lib │ │ ├── libpcmpi64.dll │ │ ├── libpcmpi64.lib │ │ ├── libtopology2_64.dll │ │ ├── msmpi.lib │ │ ├── msmpifec.lib │ │ ├── msmpifmc.lib │ │ ├── wlm-hpc.dll │ │ ├── wlm-lsf.1.dll │ │ ├── wlm-lsf.dll │ │ └── wlm-nosched.dll ├── pcre │ ├── include │ │ ├── pcre.h │ │ ├── pcreposix.h │ │ └── regex.h │ ├── lib │ │ ├── libpcre.dll.a │ │ ├── libpcreposix.dll.a │ │ ├── pcre-bcc.lib │ │ ├── pcre.lib │ │ ├── pcre3.dll.def │ │ ├── pcreposix-bcc.lib │ │ ├── pcreposix.lib │ │ └── pcreposix3.dll.def │ └── manifest │ │ ├── pcre-7.0-lib.mft │ │ └── pcre-7.0-lib.ver ├── pthreads │ ├── dll │ │ ├── pthreadGC2.dll │ │ └── pthreadVC2.dll │ ├── include │ │ ├── pthread.h │ │ ├── sched.h │ │ └── semaphore.h │ └── lib │ │ ├── libpthreadGC2.a │ │ └── pthreadVC2.lib ├── tecplot │ ├── include │ │ ├── ALLOC.h │ │ ├── ARRLIST.h │ │ ├── AUXDATA.h │ │ ├── DATAIO.h │ │ ├── DATAIO4.h │ │ ├── DATASET.h │ │ ├── DATASET0.h │ │ ├── DATASHR.h │ │ ├── DATAUTIL.h │ │ ├── FACE.h │ │ ├── FILESTREAM.h │ │ ├── GEOM.h │ │ ├── GEOM2.h │ │ ├── GLOBAL.h │ │ ├── INPUT.h │ │ ├── MASTER.h │ │ ├── Q_MSG.h │ │ ├── Q_UNICODE.h │ │ ├── SET.h │ │ ├── STRLIST.h │ │ ├── STRUTIL.h │ │ ├── SYSTEM.h │ │ ├── TASSERT.h │ │ ├── TECIO.h │ │ ├── TECXXX.h │ │ ├── TEXT.h │ │ ├── TranslatedString.h │ │ ├── VERSION.h │ │ ├── W__BASE.h │ │ └── stdafx.h │ └── lib │ │ ├── TecPlot.lib │ │ └── TecPlotd.lib ├── win_flex_bison │ ├── 00A Bison and Flex - with Win Flex and Bison.pptx │ ├── FlexLexer.h │ ├── README.txt │ ├── Sample Lexer and Parser │ │ ├── Source.cpp │ │ ├── lexer.l │ │ └── parser.y │ ├── UNISTD_ERROR.readme │ ├── Visual Studio Sample Project │ │ └── 00A-WinBisonFlex-Solution │ │ │ ├── 00A-WinBisonFlex-Solution.sln │ │ │ └── HelloWinBisonFlex │ │ │ ├── HelloWinBisonFlex.vcxproj │ │ │ ├── HelloWinBisonFlex.vcxproj.filters │ │ │ ├── Source.cpp │ │ │ ├── lexer.cpp │ │ │ ├── lexer.l │ │ │ ├── parser.cpp │ │ │ ├── parser.h │ │ │ └── parser.y │ ├── custom_build_rules │ │ ├── how_to_use.txt │ │ ├── win_bison_only │ │ │ ├── how_to_use.txt │ │ │ ├── win_bison_custom_build.props │ │ │ ├── win_bison_custom_build.targets │ │ │ └── win_bison_custom_build.xml │ │ ├── win_flex_bison_custom_build.props │ │ ├── win_flex_bison_custom_build.targets │ │ ├── win_flex_bison_custom_build.xml │ │ └── win_flex_only │ │ │ ├── how_to_use.txt │ │ │ ├── win_flex_custom_build.props │ │ │ ├── win_flex_custom_build.targets │ │ │ └── win_flex_custom_build.xml │ ├── data │ │ ├── README │ │ ├── bison.m4 │ │ ├── c++-skel.m4 │ │ ├── c++.m4 │ │ ├── c-like.m4 │ │ ├── c-skel.m4 │ │ ├── c.m4 │ │ ├── glr.c │ │ ├── glr.cc │ │ ├── java-skel.m4 │ │ ├── java.m4 │ │ ├── lalr1.cc │ │ ├── lalr1.java │ │ ├── local.mk │ │ ├── location.cc │ │ ├── m4sugar │ │ │ ├── foreach.m4 │ │ │ └── m4sugar.m4 │ │ ├── stack.hh │ │ ├── variant.hh │ │ ├── xslt │ │ │ ├── bison.xsl │ │ │ ├── xml2dot.xsl │ │ │ ├── xml2text.xsl │ │ │ └── xml2xhtml.xsl │ │ └── yacc.c │ ├── win_bison.exe │ └── win_flex.exe └── zLib │ ├── include │ ├── crc32.h │ ├── deflate.h │ ├── gzguts.h │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.h │ ├── inftrees.h │ ├── trees.h │ ├── zconf.h │ ├── zlib.h │ └── zutil.h │ └── lib │ ├── zlibstat.lib │ └── zlibstatd.lib ├── LICENSE ├── OpenFoam7.sln ├── OpenFoam7 ├── OpenFoam7.vcxproj ├── OpenFoam7.vcxproj.filters ├── Test-DynamicField.txt ├── Test_DLList.txt ├── applications │ └── test │ │ ├── BinSum │ │ └── Test-BinSum.cxx │ │ ├── Circulator │ │ └── Test-Circulator.cxx │ │ ├── CompactIOList │ │ └── Test-CompactIOList.cxx │ │ ├── CompactListList │ │ └── Test-CompactListList.cxx │ │ ├── DLList │ │ └── Test-DLList.cxx │ │ ├── Dictionary │ │ ├── Test-Dictionary.cxx │ │ └── Test-dictionary1.cxx │ │ ├── Distribution │ │ └── Test-Distribution.cxx │ │ ├── DynamicField │ │ └── Test-DynamicField.cxx │ │ ├── DynamicList │ │ └── Test-DynamicList.cxx │ │ ├── FixedList │ │ └── Test_FixedList.cxx │ │ ├── Function1 │ │ ├── Test_Function1.cxx │ │ └── function1Properties │ │ ├── GAMGAgglomeration │ │ └── Test_GAMGAgglomeration.cxx │ │ ├── HashPtrTable │ │ └── Test_HashPtrTable.cxx │ │ ├── HashSet │ │ └── Test_HashSet.cxx │ │ ├── HashTable │ │ └── Test_HashTable.cxx │ │ ├── HashTable2 │ │ └── Test_HashTable2.cxx │ │ ├── HashTable3 │ │ └── Test_HashTable3.cxx │ │ ├── Hashing │ │ ├── Test_Hashing.cxx │ │ └── hashingTests │ │ ├── IOField │ │ └── Test_IOField.cxx │ │ ├── ISLList │ │ └── Test_ISLList.cxx │ │ ├── IStringStream │ │ └── Test_IStringStream.cxx │ │ ├── IndirectList │ │ └── Test_IndirectList.cxx │ │ ├── List │ │ └── Test-List.cxx │ │ ├── ListHashTable │ │ └── Test_ListHashTable.cxx │ │ ├── ListOps │ │ └── Test_ListOps.cxx │ │ ├── Map │ │ └── Test_Map.cxx │ │ ├── Matrix │ │ └── Test_Matrix.cxx │ │ ├── NamedEnum │ │ └── Test_NamedEnum.cxx │ │ ├── ODE │ │ └── Test_ODE.cxx │ │ ├── OStringStream │ │ └── Test_OStringStream.cxx │ │ ├── POSIX │ │ └── Test_POSIX.cxx │ │ ├── PackedList │ │ └── Test_PackedList.cxx │ │ ├── PackedList1 │ │ └── Test_PackedList1.cxx │ │ ├── PackedList2 │ │ └── Test_PackedList2.cxx │ │ ├── PackedList3 │ │ └── Test_PackedList3.cxx │ │ ├── PackedList4 │ │ └── Test_PackedList4.cxx │ │ ├── PatchEdgeFaceWave │ │ └── Test_PatchEdgeFaceWave.cxx │ │ ├── PatchTools │ │ └── Test_PatchTools.cxx │ │ ├── PointEdgeWave │ │ └── Test_PointEdgeWave.cxx │ │ ├── Polynomial │ │ └── Test_Polynomial.cxx │ │ ├── PtrList │ │ └── Test_PtrList.cxx │ │ ├── PtrListDictionary │ │ └── Test_PtrListDictionary.cxx │ │ ├── SLList │ │ └── Test_SLList.cxx │ │ ├── Tuple2 │ │ └── Test_Tuple2.cxx │ │ ├── UDictionary │ │ └── Test_UDictionary.cxx │ │ ├── UIndirectList │ │ └── Test_UIndirectList.cxx │ │ ├── UniformField │ │ └── Test_UniformField.cxx │ │ ├── alloc │ │ ├── Test-malloc.cxx │ │ └── Test-new.cxx │ │ ├── callback │ │ └── Test-callback.cxx │ │ ├── cubicEqn │ │ └── Test-cubicEqn.cxx │ │ ├── cyclic │ │ ├── Test-cyclic.cxx │ │ └── createFields.lxx │ │ ├── dimensionedType │ │ └── Test-dimensionedType.cxx │ │ ├── dynamicIndexedOctree │ │ └── Test-dynamicIndexedOctree.cxx │ │ ├── error │ │ └── Test-error.cxx │ │ ├── fieldDependency │ │ └── Test-fieldDependency.cxx │ │ ├── fileName │ │ └── Test-fileName.cxx │ │ ├── fileNameClean │ │ └── Test-fileNameClean.cxx │ │ ├── findCell_octree │ │ └── Test_findCell_octree.cxx │ │ ├── findSphereFeatureEdges_octree │ │ └── Test_findSphereFeatureEdges_octree.cxx │ │ ├── findTimes │ │ └── Test_findTimes.cxx │ │ ├── fvSolutionCombine │ │ └── Test_fvSolutionCombine.cxx │ │ ├── fvc │ │ └── Test_fvc.cxx │ │ ├── globalIndex │ │ └── Test_globalIndex.cxx │ │ ├── globalMeshData │ │ └── Test_globalMeshData.cxx │ │ ├── graph │ │ ├── Test_graph.cxx │ │ └── Test_graph2.cxx │ │ ├── graphXi │ │ └── Test_graphXi.cxx │ │ ├── hexRef8 │ │ ├── Test_hexRef8.cxx │ │ └── block │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── manualDecomposition │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── io │ │ └── Test_io.cxx │ │ ├── labelRanges │ │ └── Test_labelRanges.cxx │ │ ├── liquid │ │ └── Test_liquid.cxx │ │ ├── mappedPatch │ │ └── Test_mappedPatch.cxx │ │ ├── memInfo │ │ └── Test_memInfo.cxx │ │ ├── mesh │ │ └── Test_mesh.cxx │ │ ├── mkdir │ │ └── Test_mkdir.cxx │ │ ├── momentOfInertia │ │ └── Test_momentOfInertia.cxx │ │ ├── mvBak │ │ └── Test_mvBak.cxx │ │ ├── nullObject │ │ └── Test_nullObject.cxx │ │ ├── pTraits │ │ └── Test_pTraits.cxx │ │ ├── parallel │ │ └── Test_parallel.cxx │ │ ├── parallel_communicators │ │ └── Test_parallel_communicators.cxx │ │ ├── parallel_nonBlocking │ │ └── Test_parallel_nonBlocking.cxx │ │ ├── passiveParticle │ │ └── Test_passiveParticle.cxx │ │ ├── patchRegion │ │ ├── Test_patchRegion.cxx │ │ └── cavity_pinched │ │ │ ├── README.txt │ │ │ ├── constant │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── collapseDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── pointField │ │ └── Test_pointField.cxx │ │ ├── prefixOSstream │ │ └── Test_prefixOSstream.cxx │ │ ├── primitivePatch │ │ └── Test_primitivePatch.cxx │ │ ├── quaternion │ │ └── Test_quaternion.cxx │ │ ├── reconstruct │ │ └── Test_reconstruct.cxx │ │ ├── regex │ │ ├── Test_regex.cxx │ │ └── testRegexps │ │ ├── rigidBodyDynamics │ │ └── Test_rigidBodyDynamics.cxx │ │ ├── sha1 │ │ └── Test_sha1.cxx │ │ ├── simpleMatrix │ │ └── Test_simpleMatrix.cxx │ │ ├── sizeof │ │ └── Test_sizeof.cxx │ │ ├── slicedField │ │ └── Test_slicedField.cxx │ │ ├── sort │ │ └── Test_sort.cxx │ │ ├── speed │ │ ├── scalarSpeed │ │ │ └── Test_scalarSpeed.cxx │ │ └── vectorSpeed │ │ │ └── Test_vectorSpeed.cxx │ │ ├── sphericalTensorField │ │ └── Test_sphericalTensorField.cxx │ │ ├── spline │ │ ├── Test_spline.cxx │ │ └── test-splines │ │ ├── string │ │ └── Test_string.cxx │ │ ├── stringList │ │ └── Test_stringList.cxx │ │ ├── symmTensorField │ │ └── Test_symmTensorField.cxx │ │ ├── syncTools │ │ └── Test_syncTools.cxx │ │ ├── tensor │ │ └── Test_tensor.cxx │ │ ├── tensor2D │ │ └── Test_tensor2D.cxx │ │ ├── test.hxx │ │ ├── tetTetOverlap │ │ └── Test_tetTetOverlap.cxx │ │ ├── thermoMixture │ │ ├── Test_thermoMixture.cxx │ │ └── thermoDict │ │ ├── tmpField │ │ └── Test_tmpField.cxx │ │ ├── tnbVersion │ │ └── Test_tnbVersion.cxx │ │ ├── tokenize │ │ └── Test_tokenize.cxx │ │ ├── triTet │ │ └── Test_triTet.cxx │ │ ├── vector │ │ └── Test_vector.cxx │ │ ├── vectorTools │ │ └── Test_vectorTools.cxx │ │ ├── volField │ │ ├── Test_volField.cxx │ │ └── cavity │ │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── volPointInterpolation │ │ └── Test_volPointInterpolation.cxx │ │ ├── wallDist │ │ └── Test_wallDist.cxx │ │ └── wordRe │ │ ├── Test_wordRe.cxx │ │ └── testRegexps ├── cpp.hint ├── main.cxx └── test1.txt ├── README.md ├── TnbAtmosphericModels ├── TnbAtmosphericModels.vcxproj ├── TnbAtmosphericModels.vcxproj.filters └── TnbLib │ └── atmosphericModels │ ├── derivedFvPatchFields │ ├── atmBoundaryLayer │ │ ├── atmBoundaryLayer.cxx │ │ └── atmBoundaryLayer.hxx │ ├── atmBoundaryLayerInletEpsilon │ │ ├── atmBoundaryLayerInletEpsilonFvPatchScalarField.cxx │ │ └── atmBoundaryLayerInletEpsilonFvPatchScalarField.hxx │ ├── atmBoundaryLayerInletK │ │ ├── atmBoundaryLayerInletKFvPatchScalarField.cxx │ │ └── atmBoundaryLayerInletKFvPatchScalarField.hxx │ ├── atmBoundaryLayerInletVelocity │ │ ├── atmBoundaryLayerInletVelocityFvPatchVectorField.cxx │ │ └── atmBoundaryLayerInletVelocityFvPatchVectorField.hxx │ └── nutkAtmRoughWallFunction │ │ ├── nutkAtmRoughWallFunctionFvPatchScalarField.cxx │ │ └── nutkAtmRoughWallFunctionFvPatchScalarField.hxx │ ├── kEpsilonLopesdaCosta │ ├── kEpsilonLopesdaCosta.cxx │ └── kEpsilonLopesdaCosta.hxx │ ├── module │ └── AtmosphericModels_Module.hxx │ └── porosityModels │ └── powerLawLopesdaCosta │ ├── powerLawLopesdaCosta.cxx │ ├── powerLawLopesdaCosta.hxx │ └── powerLawLopesdaCostaI.hxx ├── TnbBase ├── TnbBase.vcxproj ├── TnbBase.vcxproj.filters ├── TnbLib │ └── Base │ │ ├── OSspecific │ │ └── MSWindows │ │ │ ├── MSwindows.cxx │ │ │ ├── MSwindows.hxx │ │ │ ├── clockTime │ │ │ ├── clockTime.cxx │ │ │ └── clockTime.hxx │ │ │ ├── cpuTime │ │ │ ├── cpuTime.cxx │ │ │ └── cpuTime.hxx │ │ │ ├── deelx.hxx │ │ │ ├── dummyPrintStack.cxx │ │ │ ├── fileMonitor.cxx │ │ │ ├── fileMonitor.hxx │ │ │ ├── fileStat.cxx │ │ │ ├── fileStat.hxx │ │ │ ├── memInfo │ │ │ ├── memInfo.cxx │ │ │ ├── memInfo.hxx │ │ │ └── memInfoIO.cxx │ │ │ ├── printStack.cxx │ │ │ ├── regExp.cxx │ │ │ ├── regExp.hxx │ │ │ ├── signals │ │ │ ├── sigFpe.cxx │ │ │ ├── sigFpe.hxx │ │ │ ├── sigInt.cxx │ │ │ ├── sigInt.hxx │ │ │ ├── sigQuit.cxx │ │ │ ├── sigQuit.hxx │ │ │ ├── sigSegv.cxx │ │ │ ├── sigSegv.hxx │ │ │ ├── sigStopAtWriteNow.cxx │ │ │ ├── sigStopAtWriteNow.hxx │ │ │ ├── sigWriteNow.cxx │ │ │ └── sigWriteNow.hxx │ │ │ ├── timer.cxx │ │ │ └── timer.hxx │ │ ├── Pstream │ │ └── mpi │ │ │ ├── PstreamGlobals.cxx │ │ │ ├── PstreamGlobals.hxx │ │ │ ├── UIPread.cxx │ │ │ ├── UOPwrite.cxx │ │ │ ├── UPstreamMPI.cxx │ │ │ ├── allReduce.hxx │ │ │ ├── allReduceI.hxx │ │ │ └── allReduceTemplates.cxx-backup │ │ ├── algorithms │ │ ├── dynamicIndexedOctree │ │ │ ├── dynamicIndexedOctree.cxx-backup │ │ │ ├── dynamicIndexedOctree.hxx │ │ │ ├── dynamicIndexedOctreeI.hxx │ │ │ ├── dynamicIndexedOctreeName.cxx │ │ │ ├── dynamicTreeDataPoint.cxx │ │ │ └── dynamicTreeDataPoint.hxx │ │ ├── indexedOctree │ │ │ ├── indexedOctree.cxx-backup │ │ │ ├── indexedOctree.hxx │ │ │ ├── indexedOctreeI.hxx │ │ │ ├── indexedOctreeName.cxx │ │ │ ├── labelBits.hxx │ │ │ ├── treeDataCell.cxx │ │ │ ├── treeDataCell.hxx │ │ │ ├── volumeType.cxx │ │ │ └── volumeType.hxx │ │ └── subCycle │ │ │ └── subCycle.hxx │ │ ├── containers │ │ ├── Circulators │ │ │ ├── Circulator │ │ │ │ ├── Circulator.hxx │ │ │ │ └── CirculatorI.hxx │ │ │ ├── CirculatorBase │ │ │ │ └── CirculatorBase.hxx │ │ │ └── ConstCirculator │ │ │ │ ├── ConstCirculator.hxx │ │ │ │ └── ConstCirculatorI.hxx │ │ ├── Dictionaries │ │ │ ├── Dictionary │ │ │ │ ├── DictionaryTemplate.cxx-backup │ │ │ │ ├── DictionaryTemplate.hxx │ │ │ │ └── DictionaryTemplateI.hxx │ │ │ ├── DictionaryBase │ │ │ │ ├── DictionaryBase.cxx-backup │ │ │ │ ├── DictionaryBase.hxx │ │ │ │ ├── DictionaryBaseIO.cxx-backup │ │ │ │ ├── DictionaryBaseIO_Imp.hxx │ │ │ │ └── DictionaryBase_Imp.hxx │ │ │ ├── PtrDictionary │ │ │ │ ├── PtrDictionary.cxx-backup │ │ │ │ ├── PtrDictionary.hxx │ │ │ │ └── PtrDictionaryI.hxx │ │ │ ├── PtrListDictionary │ │ │ │ ├── PtrListDictionary.cxx-backup │ │ │ │ ├── PtrListDictionary.hxx │ │ │ │ └── PtrListDictionaryI.hxx │ │ │ ├── UDictionary │ │ │ │ ├── UDictionary.cxx-backup │ │ │ │ ├── UDictionary.hxx │ │ │ │ └── UDictionaryI.hxx │ │ │ └── UPtrDictionary │ │ │ │ ├── UPtrDictionary.cxx-backup │ │ │ │ ├── UPtrDictionary.hxx │ │ │ │ └── UPtrDictionaryI.hxx │ │ ├── HashTables │ │ │ ├── HashPtrTable │ │ │ │ ├── HashPtrTable.cxx-backup │ │ │ │ ├── HashPtrTable.hxx │ │ │ │ ├── HashPtrTableIO.cxx-backup │ │ │ │ ├── HashPtrTableIO_Imp.hxx │ │ │ │ └── HashPtrTable_Imp.hxx │ │ │ ├── HashSet │ │ │ │ ├── HashSet.cxx-backup │ │ │ │ ├── HashSet.hxx │ │ │ │ └── HashSetI.hxx │ │ │ ├── HashTable │ │ │ │ ├── HashTable.cxx-backup │ │ │ │ ├── HashTable.hxx │ │ │ │ ├── HashTableCore.cxx │ │ │ │ ├── HashTableI.hxx │ │ │ │ ├── HashTableIO.cxx-backup │ │ │ │ ├── HashTableIO_Imp.hxx │ │ │ │ └── HashTable_Imp.hxx │ │ │ ├── ListHashTable │ │ │ │ ├── ListHashTable.cxx-backup │ │ │ │ ├── ListHashTable.hxx │ │ │ │ ├── ListHashTableCore.cxx │ │ │ │ ├── ListHashTableI.hxx │ │ │ │ ├── ListHashTableIO.cxx-backup │ │ │ │ ├── ListHashTableIO_Imp.hxx │ │ │ │ └── ListHashTable_Imp.hxx │ │ │ ├── Map │ │ │ │ └── Map.hxx │ │ │ └── PtrMap │ │ │ │ └── PtrMap.hxx │ │ ├── Identifiers │ │ │ └── Keyed │ │ │ │ ├── Keyed.cxx │ │ │ │ ├── Keyed.hxx │ │ │ │ └── KeyedI.hxx │ │ ├── LinkedLists │ │ │ ├── accessTypes │ │ │ │ ├── ILList │ │ │ │ │ ├── ILList.cxx-backup │ │ │ │ │ ├── ILList.hxx │ │ │ │ │ ├── ILListIO.cxx-backup │ │ │ │ │ ├── ILListIO_Imp.hxx │ │ │ │ │ └── ILList_Imp.hxx │ │ │ │ ├── LList │ │ │ │ │ ├── LList.cxx-backup │ │ │ │ │ ├── LList.hxx │ │ │ │ │ ├── LListIO.cxx-backup │ │ │ │ │ ├── LListIO_Imp.hxx │ │ │ │ │ └── LList_Imp.hxx │ │ │ │ ├── LPtrList │ │ │ │ │ ├── LPtrList.cxx-backup │ │ │ │ │ ├── LPtrList.hxx │ │ │ │ │ ├── LPtrListIO.cxx-backup │ │ │ │ │ ├── LPtrListIO_Imp.hxx │ │ │ │ │ └── LPtrList_Imp.hxx │ │ │ │ └── UILList │ │ │ │ │ ├── UILList.cxx-backup │ │ │ │ │ ├── UILList.hxx │ │ │ │ │ ├── UILListIO.cxx-backup │ │ │ │ │ ├── UILListIO_Imp.hxx │ │ │ │ │ └── UILList_Imp.hxx │ │ │ ├── linkTypes │ │ │ │ ├── DLListBase │ │ │ │ │ ├── DLListBase.cxx │ │ │ │ │ ├── DLListBase.hxx │ │ │ │ │ └── DLListBaseI.hxx │ │ │ │ └── SLListBase │ │ │ │ │ ├── SLListBase.cxx │ │ │ │ │ ├── SLListBase.hxx │ │ │ │ │ └── SLListBaseI.hxx │ │ │ └── user │ │ │ │ ├── DLList.hxx │ │ │ │ ├── DLPtrList.hxx │ │ │ │ ├── FIFOStack.hxx │ │ │ │ ├── IDLList.hxx │ │ │ │ ├── ISLList.hxx │ │ │ │ ├── LIFOStack.hxx │ │ │ │ ├── SLList.hxx │ │ │ │ ├── SLPtrList.hxx │ │ │ │ └── UIDLList.hxx │ │ ├── Lists │ │ │ ├── BiIndirectList │ │ │ │ ├── BiIndirectList.hxx │ │ │ │ └── BiIndirectListI.hxx │ │ │ ├── BinSum │ │ │ │ ├── BinSum.cxx-backup │ │ │ │ ├── BinSum.hxx │ │ │ │ └── BinSumI.hxx │ │ │ ├── CompactListList │ │ │ │ ├── CompactListList.cxx-backup │ │ │ │ ├── CompactListList.hxx │ │ │ │ ├── CompactListListI.hxx │ │ │ │ ├── CompactListListIO.cxx-backup │ │ │ │ ├── CompactListListIO_Imp.hxx │ │ │ │ └── CompactListList_Imp.hxx │ │ │ ├── Distribution │ │ │ │ ├── Distribution.cxx-backup │ │ │ │ ├── DistributionTemplate.hxx │ │ │ │ ├── DistributionTemplateI.hxx │ │ │ │ └── DistributionTemplate_Imp.hxx │ │ │ ├── DynamicList │ │ │ │ ├── DynamicList.cxx-backup │ │ │ │ ├── DynamicList.hxx │ │ │ │ ├── DynamicListI.hxx │ │ │ │ └── DynamicList_Imp.hxx │ │ │ ├── FixedList │ │ │ │ ├── FixedList.cxx-backup │ │ │ │ ├── FixedList.hxx │ │ │ │ ├── FixedListI.hxx │ │ │ │ ├── FixedListIO.cxx-backup │ │ │ │ ├── FixedListIO_Imp.hxx │ │ │ │ └── FixedList_Imp.hxx │ │ │ ├── Histogram │ │ │ │ ├── Histogram.cxx-backup │ │ │ │ ├── Histogram.hxx │ │ │ │ └── HistogramI.hxx │ │ │ ├── IndirectList │ │ │ │ ├── IndirectList.cxx │ │ │ │ ├── IndirectList.hxx │ │ │ │ └── IndirectListI.hxx │ │ │ ├── List │ │ │ │ ├── List.cxx-backup │ │ │ │ ├── List.hxx │ │ │ │ ├── ListI.hxx │ │ │ │ ├── ListIO.cxx-backup │ │ │ │ ├── ListIO_Imp.hxx │ │ │ │ ├── ListLoopM.hxx │ │ │ │ └── List_Imp.hxx │ │ │ ├── ListListOps │ │ │ │ ├── ListListOps.cxx-backup │ │ │ │ ├── ListListOps.hxx │ │ │ │ └── ListListOpsI.hxx │ │ │ ├── ListOps │ │ │ │ ├── ListOps.cxx │ │ │ │ ├── ListOps.hxx │ │ │ │ ├── ListOpsI.hxx │ │ │ │ └── ListOpsTemplates.cxx-backup │ │ │ ├── New WinRAR ZIP archive.zip │ │ │ ├── PackedList │ │ │ │ ├── PackedBoolList.cxx │ │ │ │ ├── PackedBoolList.cxx-backup │ │ │ │ ├── PackedBoolList.hxx │ │ │ │ ├── PackedBoolListI.hxx │ │ │ │ ├── PackedBoolList_Imp.hxx │ │ │ │ ├── PackedList.cxx-backup │ │ │ │ ├── PackedList.hxx │ │ │ │ ├── PackedListCore.cxx │ │ │ │ ├── PackedListI.hxx │ │ │ │ └── PackedList_Imp.hxx │ │ │ ├── PtrList │ │ │ │ ├── PtrList.cxx-backup │ │ │ │ ├── PtrList.hxx │ │ │ │ ├── PtrListI.hxx │ │ │ │ ├── PtrListIO.cxx-backup │ │ │ │ ├── PtrListIO_Imp.hxx │ │ │ │ └── PtrList_Imp.hxx │ │ │ ├── SortableList │ │ │ │ ├── ParSortableList.cxx-backup │ │ │ │ ├── ParSortableList.hxx │ │ │ │ ├── ParSortableListI.hxx │ │ │ │ ├── ParSortableListName.cxx │ │ │ │ ├── SortableList.cxx-backup │ │ │ │ ├── SortableList.hxx │ │ │ │ └── SortableListI.hxx │ │ │ ├── SubList │ │ │ │ ├── SubList.hxx │ │ │ │ └── SubListI.hxx │ │ │ ├── UIndirectList │ │ │ │ ├── UIndirectList.hxx │ │ │ │ ├── UIndirectListI.hxx │ │ │ │ ├── UIndirectListIO.cxx-backup │ │ │ │ └── UIndirectListIO_Imp.hxx │ │ │ ├── UList │ │ │ │ ├── UList.cxx-backup │ │ │ │ ├── UList.hxx │ │ │ │ ├── UListI.hxx │ │ │ │ ├── UListIO.cxx-backup │ │ │ │ ├── UListIO_Imp.hxx │ │ │ │ └── UList_Imp.hxx │ │ │ └── UPtrList │ │ │ │ ├── UPtrList.cxx-backup │ │ │ │ ├── UPtrList.hxx │ │ │ │ ├── UPtrListI.hxx │ │ │ │ ├── UPtrListIO.cxx-backup │ │ │ │ ├── UPtrListIO_Imp.hxx │ │ │ │ └── UPtrList_Imp.hxx │ │ └── NamedEnum │ │ │ ├── NamedEnum.cxx-backup │ │ │ ├── NamedEnum.hxx │ │ │ └── NamedEnumI.hxx │ │ ├── db │ │ ├── Callback │ │ │ ├── Callback.cxx-backup │ │ │ ├── Callback.hxx │ │ │ └── CallbackI.hxx │ │ ├── CallbackRegistry │ │ │ ├── CallbackRegistry.cxx-backup │ │ │ ├── CallbackRegistry.hxx │ │ │ ├── CallbackRegistryI.hxx │ │ │ └── CallbackRegistryName.cxx │ │ ├── IOobject │ │ │ ├── IOobject.cxx │ │ │ ├── IOobject.hxx │ │ │ ├── IOobjectI.hxx │ │ │ ├── IOobjectIO.cxx │ │ │ ├── IOobjectReadHeader.cxx │ │ │ ├── IOobjectTemplates.cxx-backup │ │ │ ├── IOobjectTemplatesI.hxx │ │ │ └── IOobjectWriteHeader.cxx │ │ ├── IOobjectList │ │ │ ├── IOobjectList.cxx │ │ │ └── IOobjectList.hxx │ │ ├── IOobjects │ │ │ ├── CompactIOField │ │ │ │ ├── CompactIOField.cxx-backup │ │ │ │ ├── CompactIOField.hxx │ │ │ │ └── CompactIOFieldI.hxx │ │ │ ├── CompactIOList │ │ │ │ ├── CompactIOList.cxx-backup │ │ │ │ ├── CompactIOList.hxx │ │ │ │ ├── CompactIOListI.hxx │ │ │ │ ├── ListCompactIO.cxx-backup │ │ │ │ ├── ListCompactIO.hxx │ │ │ │ └── ListCompactIOI.hxx │ │ │ ├── GlobalIOField │ │ │ │ ├── GlobalIOField.cxx-backup │ │ │ │ ├── GlobalIOField.hxx │ │ │ │ ├── GlobalIOFieldI.hxx │ │ │ │ └── GlobalIOFields.cxx │ │ │ ├── GlobalIOList │ │ │ │ ├── GlobalIOList.cxx-backup │ │ │ │ ├── GlobalIOList.hxx │ │ │ │ ├── GlobalIOListI.hxx │ │ │ │ ├── globalIOLists.cxx │ │ │ │ └── globalIOLists.hxx │ │ │ ├── IOField │ │ │ │ ├── IOField.cxx-backup │ │ │ │ ├── IOField.hxx │ │ │ │ └── IOFieldI.hxx │ │ │ ├── IOList │ │ │ │ ├── IOList.cxx-backup │ │ │ │ ├── IOList.hxx │ │ │ │ └── IOListI.hxx │ │ │ ├── IOMap │ │ │ │ ├── IOMap.cxx-backup │ │ │ │ ├── IOMap.hxx │ │ │ │ ├── IOMapI.hxx │ │ │ │ └── IOMapName.cxx │ │ │ ├── IOPtrList │ │ │ │ ├── IOPtrList.cxx-backup │ │ │ │ ├── IOPtrList.hxx │ │ │ │ └── IOPtrListI.hxx │ │ │ ├── IOdictionary │ │ │ │ ├── IOdictionary.cxx │ │ │ │ ├── IOdictionary.hxx │ │ │ │ ├── IOdictionaryIO.cxx │ │ │ │ ├── baseIOdictionary.cxx │ │ │ │ ├── baseIOdictionary.hxx │ │ │ │ ├── baseIOdictionaryIO.cxx │ │ │ │ ├── localIOdictionary.cxx │ │ │ │ ├── localIOdictionary.hxx │ │ │ │ ├── unwatchedIOdictionary.cxx │ │ │ │ └── unwatchedIOdictionary.hxx │ │ │ └── decomposedBlockData │ │ │ │ ├── decomposedBlockData.cxx │ │ │ │ └── decomposedBlockData.hxx │ │ ├── IOstreams │ │ │ ├── Fstreams │ │ │ │ ├── IFstream.cxx │ │ │ │ ├── IFstream.hxx │ │ │ │ ├── OFstream.cxx │ │ │ │ ├── OFstream.hxx │ │ │ │ ├── masterOFstream.cxx │ │ │ │ └── masterOFstream.hxx │ │ │ ├── IOstreams.cxx │ │ │ ├── IOstreams.hxx │ │ │ ├── IOstreams │ │ │ │ ├── INew.hxx │ │ │ │ ├── IOmanip.hxx │ │ │ │ ├── IOstream.cxx │ │ │ │ ├── IOstream.hxx │ │ │ │ ├── InfoProxy.hxx │ │ │ │ ├── Istream.cxx │ │ │ │ ├── Istream.hxx │ │ │ │ ├── Ostream.cxx │ │ │ │ └── Ostream.hxx │ │ │ ├── Pstreams │ │ │ │ ├── IPstream.cxx │ │ │ │ ├── IPstream.hxx │ │ │ │ ├── OPstream.cxx │ │ │ │ ├── OPstream.hxx │ │ │ │ ├── Pstream.cxx │ │ │ │ ├── Pstream.hxx │ │ │ │ ├── PstreamBuffers.cxx │ │ │ │ ├── PstreamBuffers.hxx │ │ │ │ ├── PstreamCombineReduceOps.hxx │ │ │ │ ├── PstreamHelper.cxx │ │ │ │ ├── PstreamHelper.hxx │ │ │ │ ├── PstreamHelperI.hxx │ │ │ │ ├── PstreamReduceOps.hxx │ │ │ │ ├── UIPstream.cxx │ │ │ │ ├── UIPstream.hxx │ │ │ │ ├── UOPstream.cxx │ │ │ │ ├── UOPstream.hxx │ │ │ │ ├── UPstream.cxx │ │ │ │ ├── UPstream.hxx │ │ │ │ ├── UPstreamCommsStruct.cxx │ │ │ │ ├── combineGatherScatter.cxx-backup │ │ │ │ ├── combineGatherScatterI.hxx │ │ │ │ ├── exchange.cxx-backup │ │ │ │ ├── exchangeI.hxx │ │ │ │ ├── gatherScatter.cxx-backup │ │ │ │ ├── gatherScatterI.hxx │ │ │ │ ├── gatherScatterList.cxx-backup │ │ │ │ └── gatherScatterListI.hxx │ │ │ ├── Sstreams │ │ │ │ ├── ISstream.cxx │ │ │ │ ├── ISstream.hxx │ │ │ │ ├── ISstreamI.hxx │ │ │ │ ├── OSstream.cxx │ │ │ │ ├── OSstream.hxx │ │ │ │ ├── OSstreamI.hxx │ │ │ │ ├── ReadHex.cxx-backup │ │ │ │ ├── ReadHex.hxx │ │ │ │ ├── ReadHexI.hxx │ │ │ │ ├── SstreamsPrint.cxx │ │ │ │ ├── prefixOSstream.cxx │ │ │ │ ├── prefixOSstream.hxx │ │ │ │ ├── readHexLabel.cxx │ │ │ │ └── readHexLabel.hxx │ │ │ ├── StringStreams │ │ │ │ ├── IStringStream.hxx │ │ │ │ ├── OStringStream.hxx │ │ │ │ └── StringStreamsPrint.cxx │ │ │ ├── Tstreams │ │ │ │ ├── ITstream.cxx │ │ │ │ └── ITstream.hxx │ │ │ ├── dummyISstream │ │ │ │ └── dummyISstream.hxx │ │ │ ├── dummyIstream │ │ │ │ └── dummyIstream.hxx │ │ │ ├── gzstream │ │ │ │ ├── gzstream.cxx │ │ │ │ └── gzstream.hxx │ │ │ ├── hashes │ │ │ │ └── OSHA1stream.hxx │ │ │ └── token │ │ │ │ ├── token.cxx │ │ │ │ ├── token.hxx │ │ │ │ ├── tokenI.hxx │ │ │ │ ├── tokenIO.cxx │ │ │ │ ├── tokenList.hxx │ │ │ │ └── token_Imp.hxx │ │ ├── Time │ │ │ ├── Time.cxx │ │ │ ├── Time.hxx │ │ │ ├── TimeIO.cxx │ │ │ ├── TimePaths.cxx │ │ │ ├── TimePaths.hxx │ │ │ ├── TimeState.cxx │ │ │ ├── TimeState.hxx │ │ │ ├── TimeStateI.hxx │ │ │ ├── findTimes.cxx │ │ │ ├── instant │ │ │ │ ├── instant.cxx │ │ │ │ ├── instant.hxx │ │ │ │ └── instantList.hxx │ │ │ ├── subCycleTime.cxx │ │ │ ├── subCycleTime.hxx │ │ │ ├── timeSelector.cxx │ │ │ └── timeSelector.hxx │ │ ├── dictionary │ │ │ ├── dictionary.cxx │ │ │ ├── dictionary.hxx │ │ │ ├── dictionaryEntry │ │ │ │ ├── dictionaryEntry.cxx │ │ │ │ ├── dictionaryEntry.hxx │ │ │ │ └── dictionaryEntryIO.cxx │ │ │ ├── dictionaryIO.cxx │ │ │ ├── dictionaryListEntry │ │ │ │ ├── dictionaryListEntry.cxx │ │ │ │ ├── dictionaryListEntry.hxx │ │ │ │ └── dictionaryListEntryIO.cxx │ │ │ ├── dictionaryTemplates.cxx-backup │ │ │ ├── dictionaryTemplatesI.hxx │ │ │ ├── entry │ │ │ │ ├── entry.cxx │ │ │ │ ├── entry.hxx │ │ │ │ └── entryIO.cxx │ │ │ ├── functionEntries │ │ │ │ ├── calcEntry │ │ │ │ │ ├── calcEntry.cxx │ │ │ │ │ └── calcEntry.hxx │ │ │ │ ├── codeStream │ │ │ │ │ ├── codeStream.cxx │ │ │ │ │ └── codeStream.hxx │ │ │ │ ├── functionEntry │ │ │ │ │ ├── functionEntry.cxx │ │ │ │ │ └── functionEntry.hxx │ │ │ │ ├── ifEntry │ │ │ │ │ ├── ifEntry.cxx │ │ │ │ │ └── ifEntry.hxx │ │ │ │ ├── ifeqEntry │ │ │ │ │ ├── ifeqEntry.cxx │ │ │ │ │ └── ifeqEntry.hxx │ │ │ │ ├── includeEntry │ │ │ │ │ ├── includeEntry.cxx │ │ │ │ │ └── includeEntry.hxx │ │ │ │ ├── includeEtcEntry │ │ │ │ │ ├── includeEtcEntry.cxx │ │ │ │ │ └── includeEtcEntry.hxx │ │ │ │ ├── includeFuncEntry │ │ │ │ │ ├── includeFuncEntry.cxx │ │ │ │ │ └── includeFuncEntry.hxx │ │ │ │ ├── includeIfPresentEntry │ │ │ │ │ ├── includeIfPresentEntry.cxx │ │ │ │ │ └── includeIfPresentEntry.hxx │ │ │ │ ├── inputModeEntry │ │ │ │ │ ├── inputModeEntry.cxx │ │ │ │ │ └── inputModeEntry.hxx │ │ │ │ ├── negEntry │ │ │ │ │ ├── negEntry.cxx │ │ │ │ │ └── negEntry.hxx │ │ │ │ └── removeEntry │ │ │ │ │ ├── removeEntry.cxx │ │ │ │ │ └── removeEntry.hxx │ │ │ └── primitiveEntry │ │ │ │ ├── primitiveEntry.cxx │ │ │ │ ├── primitiveEntry.hxx │ │ │ │ ├── primitiveEntryIO.cxx │ │ │ │ ├── primitiveEntryTemplates.cxx-backup │ │ │ │ └── primitiveEntryTemplatesI.hxx │ │ ├── dynamicLibrary │ │ │ ├── codedBase │ │ │ │ ├── codedBase.cxx │ │ │ │ └── codedBase.hxx │ │ │ ├── dlLibraryTable │ │ │ │ ├── dlLibraryTable.cxx │ │ │ │ ├── dlLibraryTable.hxx │ │ │ │ ├── dlLibraryTableI.hxx │ │ │ │ └── dlLibraryTableTemplates.cxx-backup │ │ │ └── dynamicCode │ │ │ │ ├── dynamicCode.cxx │ │ │ │ ├── dynamicCode.hxx │ │ │ │ ├── dynamicCodeContext.cxx │ │ │ │ └── dynamicCodeContext.hxx │ │ ├── error │ │ │ ├── IOerror.cxx │ │ │ ├── error.cxx │ │ │ ├── error.hxx │ │ │ ├── errorManip.hxx │ │ │ ├── messageStream.cxx │ │ │ └── messageStream.hxx │ │ ├── functionObjects │ │ │ ├── IOOutputFilter │ │ │ │ ├── IOOutputFilter.cxx-backup │ │ │ │ ├── IOOutputFilter.hxx │ │ │ │ └── IOOutputFilterI.hxx │ │ │ ├── functionObject │ │ │ │ ├── functionObject.cxx │ │ │ │ └── functionObject.hxx │ │ │ ├── functionObjectList │ │ │ │ ├── functionObjectList.cxx │ │ │ │ ├── functionObjectList.hxx │ │ │ │ └── postProcess.lxx │ │ │ ├── logFiles │ │ │ │ ├── logFiles.cxx │ │ │ │ └── logFiles.hxx │ │ │ ├── regionFunctionObject │ │ │ │ ├── regionFunctionObject.cxx │ │ │ │ ├── regionFunctionObject.hxx │ │ │ │ ├── regionFunctionObjectI.hxx │ │ │ │ └── regionFunctionObjectTemplates.cxx-backup │ │ │ ├── timeControl │ │ │ │ ├── timeControl.cxx │ │ │ │ ├── timeControl.hxx │ │ │ │ ├── timeControlFunctionObject.cxx │ │ │ │ ├── timeControlFunctionObject.hxx │ │ │ │ ├── timeControlFunctionObjectI.hxx │ │ │ │ └── timeControlI.hxx │ │ │ ├── writeFile │ │ │ │ ├── writeFile.cxx │ │ │ │ ├── writeFile.hxx │ │ │ │ ├── writeFileI.hxx │ │ │ │ └── writeFileTemplates.cxx-backup │ │ │ ├── writeLocalObjects │ │ │ │ ├── writeLocalObjects.cxx │ │ │ │ └── writeLocalObjects.hxx │ │ │ └── writeObjectsBase │ │ │ │ ├── writeObjectsBase.cxx │ │ │ │ └── writeObjectsBase.hxx │ │ ├── objectRegistry │ │ │ ├── objectRegistry.cxx │ │ │ ├── objectRegistry.hxx │ │ │ ├── objectRegistryI.hxx │ │ │ └── objectRegistryTemplates.cxx-backup │ │ ├── regIOobject │ │ │ ├── regIOobject.cxx │ │ │ ├── regIOobject.hxx │ │ │ ├── regIOobjectI.hxx │ │ │ ├── regIOobjectRead.cxx │ │ │ └── regIOobjectWrite.cxx │ │ ├── runTimeSelection │ │ │ ├── construction │ │ │ │ ├── addToRunTimeSelectionTable.hxx │ │ │ │ └── runTimeSelectionTables.hxx │ │ │ └── memberFunctions │ │ │ │ ├── addToMemberFunctionSelectionTable.hxx │ │ │ │ └── memberFunctionSelectionTables.hxx │ │ └── typeInfo │ │ │ ├── className.hxx │ │ │ └── typeInfo.hxx │ │ ├── dimensionSet │ │ ├── dimensionSet.cxx │ │ ├── dimensionSet.hxx │ │ ├── dimensionSetIO.cxx │ │ ├── dimensionSets.cxx │ │ └── dimensionSets.hxx │ │ ├── dimensionedTypes │ │ ├── dimensionedScalar │ │ │ ├── dimensionedScalar.cxx │ │ │ ├── dimensionedScalar.hxx │ │ │ └── dimensionedScalarFwd.hxx │ │ ├── dimensionedSphericalTensor │ │ │ ├── dimensionedSphericalTensor.cxx │ │ │ └── dimensionedSphericalTensor.hxx │ │ ├── dimensionedSymmTensor │ │ │ ├── dimensionedSymmTensor.cxx │ │ │ └── dimensionedSymmTensor.hxx │ │ ├── dimensionedTensor │ │ │ ├── dimensionedTensor.cxx │ │ │ └── dimensionedTensor.hxx │ │ ├── dimensionedType │ │ │ ├── dimensionedType.cxx-backup │ │ │ ├── dimensionedType.hxx │ │ │ └── dimensionedTypeI.hxx │ │ ├── dimensionedTypes.hxx │ │ └── dimensionedVector │ │ │ └── dimensionedVector.hxx │ │ ├── fields │ │ ├── DimensionedFields │ │ │ ├── DimensionedField │ │ │ │ ├── DimensionedField.cxx-backup │ │ │ │ ├── DimensionedField.hxx │ │ │ │ ├── DimensionedFieldFunctions.cxx-backup │ │ │ │ ├── DimensionedFieldFunctions.hxx │ │ │ │ ├── DimensionedFieldFunctionsM.cxx │ │ │ │ ├── DimensionedFieldFunctionsM.hxx │ │ │ │ ├── DimensionedFieldFunctions_Imp.hxx │ │ │ │ ├── DimensionedFieldI.hxx │ │ │ │ ├── DimensionedFieldIO.cxx-backup │ │ │ │ ├── DimensionedFieldIO_Imp.hxx │ │ │ │ ├── DimensionedFieldReuseFunctions.hxx │ │ │ │ ├── DimensionedField_Imp.hxx │ │ │ │ └── DimensionedFields.hxx │ │ │ ├── DimensionedScalarField │ │ │ │ ├── DimensionedScalarField.cxx-backup │ │ │ │ ├── DimensionedScalarField.hxx │ │ │ │ └── DimensionedScalarFieldI.hxx │ │ │ ├── DimensionedSphericalTensorField │ │ │ │ ├── DimensionedSphericalTensorField.cxx-backup │ │ │ │ ├── DimensionedSphericalTensorField.hxx │ │ │ │ └── DimensionedSphericalTensorFieldI.hxx │ │ │ ├── DimensionedSymmTensorField │ │ │ │ ├── DimensionedSymmTensorField.cxx-backup │ │ │ │ ├── DimensionedSymmTensorField.hxx │ │ │ │ └── DimensionedSymmTensorFieldI.hxx │ │ │ └── DimensionedTensorField │ │ │ │ ├── DimensionedTensorField.cxx-backup │ │ │ │ ├── DimensionedTensorField.hxx │ │ │ │ └── DimensionedTensorFieldI.hxx │ │ ├── FieldFields │ │ │ ├── FieldField │ │ │ │ ├── FieldField.cxx-backup │ │ │ │ ├── FieldField.hxx │ │ │ │ ├── FieldFieldFunctions.cxx-backup │ │ │ │ ├── FieldFieldFunctions.hxx │ │ │ │ ├── FieldFieldFunctionsI.hxx │ │ │ │ ├── FieldFieldFunctionsM.cxx │ │ │ │ ├── FieldFieldFunctionsM.hxx │ │ │ │ ├── FieldFieldI.hxx │ │ │ │ ├── FieldFieldReuseFunctions.hxx │ │ │ │ └── FieldFields.hxx │ │ │ ├── oneFieldField │ │ │ │ ├── oneFieldField.hxx │ │ │ │ └── oneFieldFieldI.hxx │ │ │ ├── scalarFieldField │ │ │ │ ├── scalarFieldField.cxx-backup │ │ │ │ ├── scalarFieldField.hxx │ │ │ │ └── scalarFieldFieldI.hxx │ │ │ ├── sphericalTensorFieldField │ │ │ │ ├── sphericalTensorFieldField.cxx-backup │ │ │ │ ├── sphericalTensorFieldField.hxx │ │ │ │ └── sphericalTensorFieldFieldI.hxx │ │ │ ├── symmTensorFieldField │ │ │ │ ├── symmTensorFieldField.cxx-backup │ │ │ │ ├── symmTensorFieldField.hxx │ │ │ │ └── symmTensorFieldFieldI.hxx │ │ │ ├── tensorFieldField │ │ │ │ ├── tensorFieldField.cxx-backup │ │ │ │ ├── tensorFieldField.hxx │ │ │ │ └── tensorFieldFieldI.hxx │ │ │ ├── transformFieldField │ │ │ │ ├── transformFieldField.cxx-backup │ │ │ │ ├── transformFieldField.hxx │ │ │ │ └── transformFieldFieldI.hxx │ │ │ └── zeroFieldField │ │ │ │ ├── zeroFieldField.hxx │ │ │ │ └── zeroFieldFieldI.hxx │ │ ├── Fields │ │ │ ├── DynamicField │ │ │ │ ├── DynamicField.cxx-backup │ │ │ │ ├── DynamicField.hxx │ │ │ │ ├── DynamicFieldI.hxx │ │ │ │ └── DynamicField_Imp.hxx │ │ │ ├── Field │ │ │ │ ├── Field.cxx-backup │ │ │ │ ├── Field.hxx │ │ │ │ ├── FieldFunctions.cxx-backup │ │ │ │ ├── FieldFunctions.hxx │ │ │ │ ├── FieldFunctionsI.hxx │ │ │ │ ├── FieldFunctionsM.cxx │ │ │ │ ├── FieldFunctionsM.hxx │ │ │ │ ├── FieldI.hxx │ │ │ │ ├── FieldM.hxx │ │ │ │ ├── FieldReuseFunctions.hxx │ │ │ │ ├── SubField.hxx │ │ │ │ ├── SubFieldI.hxx │ │ │ │ └── undefFieldFunctionsM.hxx │ │ │ ├── UniformField │ │ │ │ ├── UniformField.hxx │ │ │ │ └── UniformFieldI.hxx │ │ │ ├── complexFields │ │ │ │ ├── complexFields.cxx │ │ │ │ └── complexFields.hxx │ │ │ ├── diagTensorField │ │ │ │ ├── diagTensorField.cxx │ │ │ │ ├── diagTensorField.hxx │ │ │ │ ├── diagTensorFieldIOField.cxx │ │ │ │ ├── diagTensorFieldIOField.hxx │ │ │ │ ├── diagTensorIOField.cxx │ │ │ │ └── diagTensorIOField.hxx │ │ │ ├── fieldMappers │ │ │ │ ├── directFieldMapper │ │ │ │ │ ├── directFieldMapper.cxx │ │ │ │ │ ├── directFieldMapper.hxx │ │ │ │ │ ├── directFieldMapperI.hxx │ │ │ │ │ └── directFieldMapperTemplates.cxx-backup │ │ │ │ ├── fieldMapper │ │ │ │ │ ├── fieldMapper.hxx │ │ │ │ │ ├── fieldMapperI.hxx │ │ │ │ │ └── fieldMapperTemplates.cxx-backup │ │ │ │ ├── generalFieldMapper │ │ │ │ │ ├── generalFieldMapper.cxx │ │ │ │ │ ├── generalFieldMapper.hxx │ │ │ │ │ ├── generalFieldMapperI.hxx │ │ │ │ │ └── generalFieldMapperTemplates.cxx-backup │ │ │ │ └── setSizeFieldMapper │ │ │ │ │ ├── setSizeFieldMapper.cxx │ │ │ │ │ ├── setSizeFieldMapper.hxx │ │ │ │ │ ├── setSizeFieldMapperI.hxx │ │ │ │ │ └── setSizeFieldMapperTemplates.cxx-backup │ │ │ ├── fieldTypes.hxx │ │ │ ├── labelField │ │ │ │ ├── labelField.cxx │ │ │ │ ├── labelField.hxx │ │ │ │ ├── labelFieldIOField.cxx │ │ │ │ ├── labelFieldIOField.hxx │ │ │ │ ├── labelIOField.cxx │ │ │ │ └── labelIOField.hxx │ │ │ ├── oneField │ │ │ │ ├── oneField.hxx │ │ │ │ └── oneFieldI.hxx │ │ │ ├── primitiveFields.hxx │ │ │ ├── primitiveFieldsFwd.hxx │ │ │ ├── quaternionField │ │ │ │ ├── quaternionField.cxx │ │ │ │ ├── quaternionField.hxx │ │ │ │ ├── quaternionIOField.cxx │ │ │ │ └── quaternionIOField.hxx │ │ │ ├── scalarField │ │ │ │ ├── scalarField.cxx │ │ │ │ ├── scalarField.hxx │ │ │ │ ├── scalarFieldIOField.cxx │ │ │ │ ├── scalarFieldIOField.hxx │ │ │ │ ├── scalarIOField.cxx │ │ │ │ └── scalarIOField.hxx │ │ │ ├── sphericalTensorField │ │ │ │ ├── sphericalTensorField.cxx │ │ │ │ ├── sphericalTensorField.hxx │ │ │ │ ├── sphericalTensorFieldIOField.cxx │ │ │ │ ├── sphericalTensorFieldIOField.hxx │ │ │ │ ├── sphericalTensorIOField.cxx │ │ │ │ └── sphericalTensorIOField.hxx │ │ │ ├── symmTensorField │ │ │ │ ├── symmTensorField.cxx │ │ │ │ ├── symmTensorField.hxx │ │ │ │ ├── symmTensorFieldIOField.cxx │ │ │ │ ├── symmTensorFieldIOField.hxx │ │ │ │ ├── symmTensorIOField.cxx │ │ │ │ └── symmTensorIOField.hxx │ │ │ ├── symmTransformField │ │ │ │ ├── symmTransformField.cxx │ │ │ │ ├── symmTransformField.cxx-backup │ │ │ │ ├── symmTransformField.hxx │ │ │ │ └── symmTransformFieldI.hxx │ │ │ ├── tensorField │ │ │ │ ├── tensorField.cxx │ │ │ │ ├── tensorField.hxx │ │ │ │ ├── tensorFieldIOField.cxx │ │ │ │ ├── tensorFieldIOField.hxx │ │ │ │ ├── tensorIOField.cxx │ │ │ │ └── tensorIOField.hxx │ │ │ ├── transformField │ │ │ │ ├── transformField.cxx │ │ │ │ ├── transformField.hxx │ │ │ │ ├── transformFieldI.hxx │ │ │ │ └── transformFieldTemplates.cxx-backup │ │ │ ├── transformList │ │ │ │ ├── transformList.cxx-backup │ │ │ │ ├── transformList.hxx │ │ │ │ └── transformListI.hxx │ │ │ ├── triadField │ │ │ │ ├── triadField.cxx │ │ │ │ ├── triadField.hxx │ │ │ │ ├── triadIOField.cxx │ │ │ │ └── triadIOField.hxx │ │ │ ├── vector2DField │ │ │ │ ├── vector2DField.cxx │ │ │ │ ├── vector2DField.hxx │ │ │ │ ├── vector2DFieldFwd.hxx │ │ │ │ ├── vector2DFieldIOField.cxx │ │ │ │ ├── vector2DFieldIOField.hxx │ │ │ │ ├── vector2DIOField.cxx │ │ │ │ └── vector2DIOField.hxx │ │ │ ├── vectorField │ │ │ │ ├── vectorField.cxx │ │ │ │ ├── vectorField.hxx │ │ │ │ ├── vectorFieldIOField.cxx │ │ │ │ ├── vectorFieldIOField.hxx │ │ │ │ ├── vectorIOField.cxx │ │ │ │ └── vectorIOField.hxx │ │ │ └── zeroField │ │ │ │ ├── zeroField.hxx │ │ │ │ └── zeroFieldI.hxx │ │ ├── GeometricFields │ │ │ ├── GeometricField │ │ │ │ ├── GeometricBoundaryField.cxx-backup │ │ │ │ ├── GeometricBoundaryField_Imp.hxx │ │ │ │ ├── GeometricField.cxx-backup │ │ │ │ ├── GeometricField.hxx │ │ │ │ ├── GeometricFieldFunctions.cxx-backup │ │ │ │ ├── GeometricFieldFunctions.hxx │ │ │ │ ├── GeometricFieldFunctionsI.hxx │ │ │ │ ├── GeometricFieldFunctionsM.cxx │ │ │ │ ├── GeometricFieldFunctionsM.hxx │ │ │ │ ├── GeometricFieldI.hxx │ │ │ │ ├── GeometricFieldReuseFunctions.hxx │ │ │ │ ├── GeometricField_Imp.hxx │ │ │ │ ├── GeometricFields.hxx │ │ │ │ ├── MapGeometricFields.hxx │ │ │ │ ├── uniformInterpolate.cxx-backup │ │ │ │ ├── uniformInterpolate.hxx │ │ │ │ └── uniformInterpolateI.hxx │ │ │ ├── GeometricScalarField │ │ │ │ ├── GeometricScalarField.cxx-backup │ │ │ │ ├── GeometricScalarField.hxx │ │ │ │ └── GeometricScalarFieldI.hxx │ │ │ ├── GeometricSphericalTensorField │ │ │ │ ├── GeometricSphericalTensorField.cxx-backup │ │ │ │ ├── GeometricSphericalTensorField.hxx │ │ │ │ └── GeometricSphericalTensorFieldI.hxx │ │ │ ├── GeometricSymmTensorField │ │ │ │ ├── GeometricSymmTensorField.cxx-backup │ │ │ │ ├── GeometricSymmTensorField.hxx │ │ │ │ └── GeometricSymmTensorFieldI.hxx │ │ │ ├── GeometricTensorField │ │ │ │ ├── GeometricTensorField.cxx-backup │ │ │ │ ├── GeometricTensorField.hxx │ │ │ │ └── GeometricTensorFieldI.hxx │ │ │ ├── SlicedGeometricField │ │ │ │ ├── SlicedGeometricField.cxx-backup │ │ │ │ ├── SlicedGeometricField.hxx │ │ │ │ └── SlicedGeometricFieldI.hxx │ │ │ ├── geometricOneField │ │ │ │ ├── geometricOneField.hxx │ │ │ │ └── geometricOneFieldI.hxx │ │ │ ├── geometricZeroField │ │ │ │ ├── geometricZeroField.hxx │ │ │ │ └── geometricZeroFieldI.hxx │ │ │ ├── pointFields │ │ │ │ ├── pointFields.cxx │ │ │ │ ├── pointFields.hxx │ │ │ │ └── pointFieldsFwd.hxx │ │ │ └── transformGeometricField │ │ │ │ ├── transformGeometricField.cxx-backup │ │ │ │ ├── transformGeometricField.hxx │ │ │ │ └── transformGeometricFieldI.hxx │ │ ├── ReadFields │ │ │ ├── ReadFields.cxx-backup │ │ │ ├── ReadFieldsTemplates.hxx │ │ │ ├── ReadFieldsTemplatesI.hxx │ │ │ ├── readPointFields.lxx │ │ │ ├── readSurfaceFields.lxx │ │ │ └── readVolFields.lxx │ │ ├── UniformDimensionedFields │ │ │ ├── UniformDimensionedField.cxx-backup │ │ │ ├── UniformDimensionedField.hxx │ │ │ ├── UniformDimensionedFieldI.hxx │ │ │ ├── uniformDimensionedFields.cxx │ │ │ └── uniformDimensionedFields.hxx │ │ ├── cloud │ │ │ ├── cloud.cxx │ │ │ ├── cloud.hxx │ │ │ └── mapClouds.hxx │ │ └── pointPatchFields │ │ │ ├── basic │ │ │ ├── basicSymmetry │ │ │ │ ├── basicSymmetryPointPatchField.cxx-backup │ │ │ │ ├── basicSymmetryPointPatchField.hxx │ │ │ │ └── basicSymmetryPointPatchFieldI.hxx │ │ │ ├── calculated │ │ │ │ ├── calculatedPointPatchField.cxx-backup │ │ │ │ ├── calculatedPointPatchField.hxx │ │ │ │ ├── calculatedPointPatchFieldI.hxx │ │ │ │ ├── calculatedPointPatchFields.cxx │ │ │ │ └── calculatedPointPatchFields.hxx │ │ │ ├── coupled │ │ │ │ ├── coupledPointPatchField.cxx-backup │ │ │ │ ├── coupledPointPatchField.hxx │ │ │ │ ├── coupledPointPatchFieldI.hxx │ │ │ │ ├── coupledPointPatchFields.cxx │ │ │ │ └── coupledPointPatchFields.hxx │ │ │ ├── fixedValue │ │ │ │ ├── fixedValuePointPatchField.cxx-backup │ │ │ │ ├── fixedValuePointPatchField.hxx │ │ │ │ ├── fixedValuePointPatchFieldI.hxx │ │ │ │ ├── fixedValuePointPatchFields.cxx │ │ │ │ └── fixedValuePointPatchFields.hxx │ │ │ ├── value │ │ │ │ ├── valuePointPatchField.cxx-backup │ │ │ │ ├── valuePointPatchField.hxx │ │ │ │ ├── valuePointPatchFieldI.hxx │ │ │ │ ├── valuePointPatchFields.cxx │ │ │ │ └── valuePointPatchFields.hxx │ │ │ └── zeroGradient │ │ │ │ ├── zeroGradientPointPatchField.cxx-backup │ │ │ │ ├── zeroGradientPointPatchField.hxx │ │ │ │ ├── zeroGradientPointPatchFieldI.hxx │ │ │ │ ├── zeroGradientPointPatchFields.cxx │ │ │ │ └── zeroGradientPointPatchFields.hxx │ │ │ ├── constraint │ │ │ ├── cyclic │ │ │ │ ├── cyclicPointPatchField.cxx-backup │ │ │ │ ├── cyclicPointPatchField.hxx │ │ │ │ ├── cyclicPointPatchFieldI.hxx │ │ │ │ ├── cyclicPointPatchFields.cxx │ │ │ │ └── cyclicPointPatchFields.hxx │ │ │ ├── cyclicSlip │ │ │ │ ├── cyclicSlipPointPatchField.cxx-backup │ │ │ │ ├── cyclicSlipPointPatchField.hxx │ │ │ │ ├── cyclicSlipPointPatchFieldI.hxx │ │ │ │ ├── cyclicSlipPointPatchFields.cxx │ │ │ │ └── cyclicSlipPointPatchFields.hxx │ │ │ ├── empty │ │ │ │ ├── emptyPointPatchField.cxx-backup │ │ │ │ ├── emptyPointPatchField.hxx │ │ │ │ ├── emptyPointPatchFieldI.hxx │ │ │ │ ├── emptyPointPatchFields.cxx │ │ │ │ └── emptyPointPatchFields.hxx │ │ │ ├── nonuniformTransformCyclic │ │ │ │ ├── nonuniformTransformCyclicPointPatchField.cxx-backup │ │ │ │ ├── nonuniformTransformCyclicPointPatchField.hxx │ │ │ │ ├── nonuniformTransformCyclicPointPatchFieldI.hxx │ │ │ │ ├── nonuniformTransformCyclicPointPatchFields.cxx │ │ │ │ └── nonuniformTransformCyclicPointPatchFields.hxx │ │ │ ├── processor │ │ │ │ ├── processorPointPatchField.cxx-backup │ │ │ │ ├── processorPointPatchField.hxx │ │ │ │ ├── processorPointPatchFieldI.hxx │ │ │ │ ├── processorPointPatchFields.cxx │ │ │ │ └── processorPointPatchFields.hxx │ │ │ ├── processorCyclic │ │ │ │ ├── processorCyclicPointPatchField.cxx-backup │ │ │ │ ├── processorCyclicPointPatchField.hxx │ │ │ │ ├── processorCyclicPointPatchFieldI.hxx │ │ │ │ ├── processorCyclicPointPatchFields.cxx │ │ │ │ └── processorCyclicPointPatchFields.hxx │ │ │ ├── symmetry │ │ │ │ ├── symmetryPointPatchField.cxx-backup │ │ │ │ ├── symmetryPointPatchField.hxx │ │ │ │ ├── symmetryPointPatchFieldI.hxx │ │ │ │ ├── symmetryPointPatchFields.cxx │ │ │ │ └── symmetryPointPatchFields.hxx │ │ │ ├── symmetryPlane │ │ │ │ ├── symmetryPlanePointPatchField.cxx-backup │ │ │ │ ├── symmetryPlanePointPatchField.hxx │ │ │ │ ├── symmetryPlanePointPatchFieldI.hxx │ │ │ │ ├── symmetryPlanePointPatchFields.cxx │ │ │ │ └── symmetryPlanePointPatchFields.hxx │ │ │ └── wedge │ │ │ │ ├── wedgePointPatchField.cxx-backup │ │ │ │ ├── wedgePointPatchField.hxx │ │ │ │ ├── wedgePointPatchFieldI.hxx │ │ │ │ ├── wedgePointPatchFields.cxx │ │ │ │ └── wedgePointPatchFields.hxx │ │ │ ├── derived │ │ │ ├── codedFixedValue │ │ │ │ ├── codedFixedValuePointPatchField.cxx-backup │ │ │ │ ├── codedFixedValuePointPatchField.hxx │ │ │ │ ├── codedFixedValuePointPatchFieldI.hxx │ │ │ │ ├── codedFixedValuePointPatchFields.cxx │ │ │ │ ├── codedFixedValuePointPatchFields.hxx │ │ │ │ └── codedFixedValuePointPatchFieldsFwd.hxx │ │ │ ├── fixedNormalSlip │ │ │ │ ├── fixedNormalSlipPointPatchField.cxx-backup │ │ │ │ ├── fixedNormalSlipPointPatchField.hxx │ │ │ │ ├── fixedNormalSlipPointPatchFieldI.hxx │ │ │ │ ├── fixedNormalSlipPointPatchFields.cxx │ │ │ │ └── fixedNormalSlipPointPatchFields.hxx │ │ │ ├── slip │ │ │ │ ├── slipPointPatchField.cxx-backup │ │ │ │ ├── slipPointPatchField.hxx │ │ │ │ ├── slipPointPatchFieldI.hxx │ │ │ │ ├── slipPointPatchFields.cxx │ │ │ │ └── slipPointPatchFields.hxx │ │ │ ├── timeVaryingUniformFixedValue │ │ │ │ ├── timeVaryingUniformFixedValuePointPatchField.cxx-backup │ │ │ │ ├── timeVaryingUniformFixedValuePointPatchField.hxx │ │ │ │ ├── timeVaryingUniformFixedValuePointPatchFieldI.hxx │ │ │ │ ├── timeVaryingUniformFixedValuePointPatchFields.cxx │ │ │ │ └── timeVaryingUniformFixedValuePointPatchFields.hxx │ │ │ └── uniformFixedValue │ │ │ │ ├── uniformFixedValuePointPatchField.cxx-backup │ │ │ │ ├── uniformFixedValuePointPatchField.hxx │ │ │ │ ├── uniformFixedValuePointPatchFieldI.hxx │ │ │ │ ├── uniformFixedValuePointPatchFields.cxx │ │ │ │ └── uniformFixedValuePointPatchFields.hxx │ │ │ └── pointPatchField │ │ │ ├── directPointPatchFieldMapper.hxx │ │ │ ├── pointConstraint │ │ │ ├── pointConstraint.hxx │ │ │ └── pointConstraintI.hxx │ │ │ ├── pointPatchField.cxx-backup │ │ │ ├── pointPatchField.hxx │ │ │ ├── pointPatchFieldFunctions.hxx │ │ │ ├── pointPatchFieldI.hxx │ │ │ ├── pointPatchFieldMapper.hxx │ │ │ ├── pointPatchFieldMapperPatchRef.hxx │ │ │ ├── pointPatchFieldNew.cxx-backup │ │ │ ├── pointPatchFieldNew_Imp.hxx │ │ │ ├── pointPatchFields.cxx │ │ │ ├── pointPatchFields.hxx │ │ │ └── pointPatchFieldsFwd.hxx │ │ ├── global │ │ ├── argList │ │ │ ├── argList.cxx │ │ │ ├── argList.hxx │ │ │ ├── argListI.hxx │ │ │ └── parRun.hxx │ │ ├── clock │ │ │ ├── clock.cxx │ │ │ └── clock.hxx │ │ ├── constants │ │ │ ├── atomic │ │ │ │ ├── atomicConstants.cxx │ │ │ │ └── atomicConstants.hxx │ │ │ ├── constants.cxx │ │ │ ├── constants.hxx │ │ │ ├── dimensionedConstants.cxx │ │ │ ├── dimensionedConstants.hxx │ │ │ ├── electromagnetic │ │ │ │ ├── electromagneticConstants.cxx │ │ │ │ └── electromagneticConstants.hxx │ │ │ ├── fundamental │ │ │ │ ├── fundamentalConstants.cxx │ │ │ │ └── fundamentalConstants.hxx │ │ │ ├── mathematical │ │ │ │ └── mathematicalConstants.hxx │ │ │ ├── physicoChemical │ │ │ │ ├── physicoChemicalConstants.cxx │ │ │ │ └── physicoChemicalConstants.hxx │ │ │ ├── thermodynamic │ │ │ │ ├── thermodynamicConstants.cxx │ │ │ │ └── thermodynamicConstants.hxx │ │ │ └── universal │ │ │ │ ├── universalConstants.cxx │ │ │ │ └── universalConstants.hxx │ │ ├── etcFiles │ │ │ ├── etcFiles.cxx │ │ │ └── etcFiles.hxx │ │ ├── fileOperations │ │ │ ├── collatedFileOperation │ │ │ │ ├── OFstreamCollator.cxx │ │ │ │ ├── OFstreamCollator.hxx │ │ │ │ ├── collatedFileOperation.cxx │ │ │ │ ├── collatedFileOperation.hxx │ │ │ │ ├── hostCollatedFileOperation.cxx │ │ │ │ ├── hostCollatedFileOperation.hxx │ │ │ │ ├── threadedCollatedOFstream.cxx │ │ │ │ └── threadedCollatedOFstream.hxx │ │ │ ├── fileOperation │ │ │ │ ├── fileOperation.cxx │ │ │ │ └── fileOperation.hxx │ │ │ ├── fileOperationInitialise │ │ │ │ ├── fileOperationInitialise.cxx │ │ │ │ ├── fileOperationInitialise.hxx │ │ │ │ └── unthreadedInitialise.hxx │ │ │ ├── masterUncollatedFileOperation │ │ │ │ ├── masterUncollatedFileOperation.cxx │ │ │ │ ├── masterUncollatedFileOperation.hxx │ │ │ │ ├── masterUncollatedFileOperationI.hxx │ │ │ │ └── masterUncollatedFileOperationTemplates.cxx-backup │ │ │ └── uncollatedFileOperation │ │ │ │ ├── uncollatedFileOperation.cxx │ │ │ │ └── uncollatedFileOperation.hxx │ │ ├── global.cxx │ │ ├── jobInfo │ │ │ ├── jobInfo.cxx │ │ │ └── jobInfo.hxx │ │ ├── new.cxx │ │ ├── tnbDebug │ │ │ ├── defineDebugSwitch.hxx │ │ │ ├── registerSwitch.hxx │ │ │ ├── simpleObjectRegistry.hxx │ │ │ ├── simpleRegIOobject.hxx │ │ │ ├── tnbDebug.cxx │ │ │ └── tnbDebug.hxx │ │ ├── tnbVersion.hxx │ │ └── unitConversion │ │ │ └── unitConversion.hxx │ │ ├── graph │ │ ├── curve │ │ │ ├── curve.cxx │ │ │ ├── curve.hxx │ │ │ ├── curveTools.cxx │ │ │ └── curveTools.hxx │ │ ├── graph.cxx │ │ ├── graph.hxx │ │ └── writers │ │ │ ├── gnuplotGraph │ │ │ ├── gnuplotGraph.cxx │ │ │ └── gnuplotGraph.hxx │ │ │ ├── jplotGraph │ │ │ ├── jplotGraph.cxx │ │ │ └── jplotGraph.hxx │ │ │ ├── rawGraph │ │ │ ├── rawGraph.cxx │ │ │ └── rawGraph.hxx │ │ │ └── xmgrGraph │ │ │ ├── xmgrGraph.cxx │ │ │ └── xmgrGraph.hxx │ │ ├── include │ │ ├── OSspecific.hxx │ │ ├── addAllRegionsOption.lxx │ │ ├── addDictOption.lxx │ │ ├── addFunctionObjectOptions.lxx │ │ ├── addOverwriteOption.lxx │ │ ├── addRegionOption.lxx │ │ ├── addTimeOptions.lxx │ │ ├── checkConstantOption.lxx │ │ ├── checkTimeOption.lxx │ │ ├── checkTimeOptions.lxx │ │ ├── checkTimeOptionsNoConstant.lxx │ │ ├── createMesh.lxx │ │ ├── createMeshNoClear.lxx │ │ ├── createNamedMesh.lxx │ │ ├── createNamedPolyMesh.lxx │ │ ├── createPolyMesh.lxx │ │ ├── createTime.lxx │ │ ├── demandDrivenData.hxx │ │ ├── listOptions.lxx │ │ ├── listOutput.lxx │ │ ├── macros.hxx │ │ ├── removeCaseOptions.lxx │ │ ├── setConstantMeshDictionaryIO.lxx │ │ ├── setRootCase.lxx │ │ ├── setRootCaseLists.lxx │ │ ├── setSystemMeshDictionaryIO.lxx │ │ └── setSystemRunTimeDictionaryIO.lxx │ │ ├── interpolations │ │ ├── interpolatePointToCell │ │ │ ├── interpolatePointToCell.cxx-backup │ │ │ ├── interpolatePointToCell.hxx │ │ │ └── interpolatePointToCellI.hxx │ │ ├── interpolateSplineXY │ │ │ ├── interpolateSplineXY.cxx-backup │ │ │ ├── interpolateSplineXY.hxx │ │ │ └── interpolateSplineXYI.hxx │ │ ├── interpolateXY │ │ │ ├── interpolateXY.cxx-backup │ │ │ ├── interpolateXY.hxx │ │ │ └── interpolateXYI.hxx │ │ ├── interpolation2DTable │ │ │ ├── interpolation2DTable.cxx-backup │ │ │ ├── interpolation2DTable.hxx │ │ │ └── interpolation2DTableI.hxx │ │ ├── interpolationLookUpTable │ │ │ ├── interpolationLookUpTable.cxx-backup │ │ │ ├── interpolationLookUpTable.hxx │ │ │ ├── interpolationLookUpTableI.hxx │ │ │ └── interpolationLookUpTable_Imp.hxx │ │ ├── interpolationTable │ │ │ ├── interpolationTable.cxx-backup │ │ │ ├── interpolationTable.hxx │ │ │ ├── interpolationTableI.hxx │ │ │ └── tableReaders │ │ │ │ ├── csv │ │ │ │ ├── csvTableReader.cxx-backup │ │ │ │ ├── csvTableReader.hxx │ │ │ │ ├── csvTableReaderI.hxx │ │ │ │ └── csvTableReaders.cxx │ │ │ │ ├── openFoam │ │ │ │ ├── openFoamTableReader.cxx-backup │ │ │ │ ├── openFoamTableReader.hxx │ │ │ │ ├── openFoamTableReaderI.hxx │ │ │ │ └── openFoamTableReaders.cxx │ │ │ │ ├── tableReader.cxx-backup │ │ │ │ ├── tableReader.hxx │ │ │ │ ├── tableReaderI.hxx │ │ │ │ ├── tableReaders.cxx │ │ │ │ └── tableReaders.hxx │ │ ├── interpolationWeights │ │ │ ├── interpolationWeights │ │ │ │ ├── interpolationWeights.cxx │ │ │ │ ├── interpolationWeights.hxx │ │ │ │ ├── interpolationWeightsI.hxx │ │ │ │ └── interpolationWeightsTemplates.cxx-backup │ │ │ ├── linearInterpolationWeights │ │ │ │ ├── linearInterpolationWeights.cxx │ │ │ │ └── linearInterpolationWeights.hxx │ │ │ └── splineInterpolationWeights │ │ │ │ ├── splineInterpolationWeights.cxx │ │ │ │ └── splineInterpolationWeights.hxx │ │ ├── patchToPatchInterpolation │ │ │ ├── CalcPatchToPatchWeights.cxx-backup │ │ │ ├── CalcPatchToPatchWeights_Imp.hxx │ │ │ ├── PatchToPatchInterpolate.cxx-backup │ │ │ ├── PatchToPatchInterpolate_Imp.hxx │ │ │ ├── PatchToPatchInterpolationName.cxx │ │ │ ├── PatchToPatchInterpolationTemplate.cxx │ │ │ ├── PatchToPatchInterpolationTemplate.hxx │ │ │ ├── PatchToPatchInterpolationTemplateI.hxx │ │ │ └── patchToPatchInterpolation.hxx │ │ ├── primitivePatchInterpolation │ │ │ ├── PrimitivePatchInterpolationTemplate.cxx-backup │ │ │ ├── PrimitivePatchInterpolationTemplate.hxx │ │ │ ├── PrimitivePatchInterpolationTemplateI.hxx │ │ │ └── primitivePatchInterpolation.hxx │ │ └── uniformInterpolationTable │ │ │ ├── uniformInterpolationTable.cxx-backup │ │ │ ├── uniformInterpolationTable.hxx │ │ │ ├── uniformInterpolationTableI.hxx │ │ │ └── uniformInterpolationTable_Imp.hxx │ │ ├── matrices │ │ ├── DiagonalMatrix │ │ │ ├── DiagonalMatrix.cxx-backup │ │ │ ├── DiagonalMatrix.hxx │ │ │ └── DiagonalMatrixI.hxx │ │ ├── LLTMatrix │ │ │ ├── LLTMatrix.cxx-backup │ │ │ ├── LLTMatrix.hxx │ │ │ └── LLTMatrixI.hxx │ │ ├── LUscalarMatrix │ │ │ ├── LUscalarMatrix.cxx │ │ │ ├── LUscalarMatrix.hxx │ │ │ ├── LUscalarMatrixTemplates.cxx-backup │ │ │ ├── LUscalarMatrixTemplatesI.hxx │ │ │ ├── procLduInterface.cxx │ │ │ ├── procLduInterface.hxx │ │ │ ├── procLduMatrix.cxx │ │ │ └── procLduMatrix.hxx │ │ ├── LduMatrix │ │ │ ├── LduMatrix │ │ │ │ ├── LduInterfaceField │ │ │ │ │ ├── LduInterfaceFieldPtrsListTemplate.hxx │ │ │ │ │ ├── LduInterfaceFieldTemplate.cxx-backup │ │ │ │ │ ├── LduInterfaceFieldTemplate.hxx │ │ │ │ │ ├── LduInterfaceFieldTemplateI.hxx │ │ │ │ │ └── LduInterfaceFields.cxx │ │ │ │ ├── LduMatrixATmulTemplate.cxx-backup │ │ │ │ ├── LduMatrixATmulTemplateI.hxx │ │ │ │ ├── LduMatrixOperationsTemplate.cxx-backup │ │ │ │ ├── LduMatrixOperationsTemplateI.hxx │ │ │ │ ├── LduMatrixPreconditionerTemplate.cxx-backup │ │ │ │ ├── LduMatrixPreconditionerTemplateI.hxx │ │ │ │ ├── LduMatrixSmootherTemplate.cxx-backup │ │ │ │ ├── LduMatrixSmootherTemplateI.hxx │ │ │ │ ├── LduMatrixSolverTemplate.cxx-backup │ │ │ │ ├── LduMatrixSolverTemplateI.hxx │ │ │ │ ├── LduMatrixTemplate.cxx-backup │ │ │ │ ├── LduMatrixTemplate.hxx │ │ │ │ ├── LduMatrixTemplateI.hxx │ │ │ │ ├── LduMatrixTemplate_Imp.hxx │ │ │ │ ├── LduMatrixUpdateMatrixInterfacesTemplate.cxx-backup │ │ │ │ ├── LduMatrixUpdateMatrixInterfacesTemplateI.hxx │ │ │ │ ├── SolverPerformanceTemplate.cxx-backup │ │ │ │ ├── SolverPerformanceTemplate.hxx │ │ │ │ ├── SolverPerformanceTemplateI.hxx │ │ │ │ ├── lduMatrices.cxx │ │ │ │ ├── lduMatrix.cxx │ │ │ │ ├── lduMatrix.hxx │ │ │ │ ├── lduMatrixATmul.cxx │ │ │ │ ├── lduMatrixOperations.cxx │ │ │ │ ├── lduMatrixPreconditioner.cxx │ │ │ │ ├── lduMatrixSmoother.cxx │ │ │ │ ├── lduMatrixSolver.cxx │ │ │ │ ├── lduMatrixTemplates.cxx-backup │ │ │ │ ├── lduMatrixTemplates_Imp.hxx │ │ │ │ ├── lduMatrixUpdateMatrixInterfaces.cxx │ │ │ │ ├── solverPerformance.cxx │ │ │ │ └── solverPerformance.hxx │ │ │ ├── Preconditioners │ │ │ │ ├── DICPreconditioner │ │ │ │ │ ├── DICPreconditioner.cxx │ │ │ │ │ └── DICPreconditioner.hxx │ │ │ │ ├── DILUPreconditioner │ │ │ │ │ ├── DILUPreconditioner.cxx │ │ │ │ │ ├── DILUPreconditioner.hxx │ │ │ │ │ ├── TDILUPreconditioner.cxx-backup │ │ │ │ │ ├── TDILUPreconditioner.hxx │ │ │ │ │ └── TDILUPreconditionerI.hxx │ │ │ │ ├── DiagonalPreconditioner │ │ │ │ │ ├── DiagonalPreconditionerTemplate.cxx-backup │ │ │ │ │ ├── DiagonalPreconditionerTemplate.hxx │ │ │ │ │ ├── DiagonalPreconditionerTemplateI.hxx │ │ │ │ │ ├── diagonalPreconditioner.cxx │ │ │ │ │ └── diagonalPreconditioner.hxx │ │ │ │ ├── FDICPreconditioner │ │ │ │ │ ├── FDICPreconditioner.cxx │ │ │ │ │ └── FDICPreconditioner.hxx │ │ │ │ ├── GAMGPreconditioner │ │ │ │ │ ├── GAMGPreconditioner.cxx │ │ │ │ │ └── GAMGPreconditioner.hxx │ │ │ │ ├── NoPreconditioner │ │ │ │ │ ├── NoPreconditionerTemplate.cxx-backup │ │ │ │ │ ├── NoPreconditionerTemplate.hxx │ │ │ │ │ ├── NoPreconditionerTemplateI.hxx │ │ │ │ │ ├── noPreconditioner.cxx │ │ │ │ │ └── noPreconditioner.hxx │ │ │ │ └── lduPreconditioners.cxx │ │ │ ├── Smoothers │ │ │ │ ├── DIC │ │ │ │ │ ├── DICSmoother.cxx │ │ │ │ │ └── DICSmoother.hxx │ │ │ │ ├── DICGaussSeidel │ │ │ │ │ ├── DICGaussSeidelSmoother.cxx │ │ │ │ │ └── DICGaussSeidelSmoother.hxx │ │ │ │ ├── DILU │ │ │ │ │ ├── DILUSmoother.cxx │ │ │ │ │ └── DILUSmoother.hxx │ │ │ │ ├── DILUGaussSeidel │ │ │ │ │ ├── DILUGaussSeidelSmoother.cxx │ │ │ │ │ └── DILUGaussSeidelSmoother.hxx │ │ │ │ ├── FDIC │ │ │ │ │ ├── FDICSmoother.cxx │ │ │ │ │ └── FDICSmoother.hxx │ │ │ │ ├── GaussSeidel │ │ │ │ │ ├── GaussSeidelSmoother.cxx │ │ │ │ │ ├── GaussSeidelSmoother.hxx │ │ │ │ │ ├── TGaussSeidelSmoother.cxx-backup │ │ │ │ │ ├── TGaussSeidelSmoother.hxx │ │ │ │ │ └── TGaussSeidelSmootherI.hxx │ │ │ │ ├── lduSmoothers.cxx │ │ │ │ ├── nonBlockingGaussSeidel │ │ │ │ │ ├── nonBlockingGaussSeidelSmoother.cxx │ │ │ │ │ └── nonBlockingGaussSeidelSmoother.hxx │ │ │ │ └── symGaussSeidel │ │ │ │ │ ├── symGaussSeidelSmoother.cxx │ │ │ │ │ └── symGaussSeidelSmoother.hxx │ │ │ ├── Solvers │ │ │ │ ├── DiagonalSolver │ │ │ │ │ ├── DiagonalSolverTemplate.cxx-backup │ │ │ │ │ ├── DiagonalSolverTemplate.hxx │ │ │ │ │ ├── DiagonalSolverTemplateI.hxx │ │ │ │ │ ├── diagonalSolver.cxx │ │ │ │ │ └── diagonalSolver.hxx │ │ │ │ ├── GAMG │ │ │ │ │ ├── GAMGAgglomerations │ │ │ │ │ │ ├── GAMGAgglomeration │ │ │ │ │ │ │ ├── GAMGAgglomerateLduAddressing.cxx │ │ │ │ │ │ │ ├── GAMGAgglomeration.cxx │ │ │ │ │ │ │ ├── GAMGAgglomeration.hxx │ │ │ │ │ │ │ ├── GAMGAgglomerationTemplates.cxx-backup │ │ │ │ │ │ │ └── GAMGAgglomerationTemplatesI.hxx │ │ │ │ │ │ ├── algebraicPairGAMGAgglomeration │ │ │ │ │ │ │ ├── algebraicPairGAMGAgglomeration.cxx │ │ │ │ │ │ │ └── algebraicPairGAMGAgglomeration.hxx │ │ │ │ │ │ ├── dummyAgglomeration │ │ │ │ │ │ │ ├── dummyAgglomeration.cxx │ │ │ │ │ │ │ └── dummyAgglomeration.hxx │ │ │ │ │ │ └── pairGAMGAgglomeration │ │ │ │ │ │ │ ├── pairGAMGAgglomerate.cxx │ │ │ │ │ │ │ ├── pairGAMGAgglomeration.cxx │ │ │ │ │ │ │ └── pairGAMGAgglomeration.hxx │ │ │ │ │ ├── GAMGProcAgglomerations │ │ │ │ │ │ ├── GAMGProcAgglomeration │ │ │ │ │ │ │ ├── GAMGProcAgglomeration.cxx │ │ │ │ │ │ │ └── GAMGProcAgglomeration.hxx │ │ │ │ │ │ ├── eagerGAMGProcAgglomeration │ │ │ │ │ │ │ ├── eagerGAMGProcAgglomeration.cxx │ │ │ │ │ │ │ └── eagerGAMGProcAgglomeration.hxx │ │ │ │ │ │ ├── manualGAMGProcAgglomeration │ │ │ │ │ │ │ ├── manualGAMGProcAgglomeration.cxx │ │ │ │ │ │ │ └── manualGAMGProcAgglomeration.hxx │ │ │ │ │ │ ├── masterCoarsestGAMGProcAgglomeration │ │ │ │ │ │ │ ├── masterCoarsestGAMGProcAgglomeration.cxx │ │ │ │ │ │ │ └── masterCoarsestGAMGProcAgglomeration.hxx │ │ │ │ │ │ ├── noneGAMGProcAgglomeration │ │ │ │ │ │ │ ├── noneGAMGProcAgglomeration.cxx │ │ │ │ │ │ │ └── noneGAMGProcAgglomeration.hxx │ │ │ │ │ │ └── procFacesGAMGProcAgglomeration │ │ │ │ │ │ │ ├── procFacesGAMGProcAgglomeration.cxx │ │ │ │ │ │ │ └── procFacesGAMGProcAgglomeration.hxx │ │ │ │ │ ├── GAMGSolver.cxx │ │ │ │ │ ├── GAMGSolver.hxx │ │ │ │ │ ├── GAMGSolverAgglomerateMatrix.cxx │ │ │ │ │ ├── GAMGSolverInterpolate.cxx │ │ │ │ │ ├── GAMGSolverScale.cxx │ │ │ │ │ ├── GAMGSolverSolve.cxx │ │ │ │ │ ├── interfaceFields │ │ │ │ │ │ ├── GAMGInterfaceField │ │ │ │ │ │ │ ├── GAMGInterfaceField.cxx │ │ │ │ │ │ │ ├── GAMGInterfaceField.hxx │ │ │ │ │ │ │ └── GAMGInterfaceFieldNew.cxx │ │ │ │ │ │ ├── cyclicGAMGInterfaceField │ │ │ │ │ │ │ ├── cyclicGAMGInterfaceField.cxx │ │ │ │ │ │ │ └── cyclicGAMGInterfaceField.hxx │ │ │ │ │ │ ├── processorCyclicGAMGInterfaceField │ │ │ │ │ │ │ ├── processorCyclicGAMGInterfaceField.cxx │ │ │ │ │ │ │ └── processorCyclicGAMGInterfaceField.hxx │ │ │ │ │ │ └── processorGAMGInterfaceField │ │ │ │ │ │ │ ├── processorGAMGInterfaceField.cxx │ │ │ │ │ │ │ └── processorGAMGInterfaceField.hxx │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── GAMGInterface │ │ │ │ │ │ ├── GAMGInterface.cxx │ │ │ │ │ │ ├── GAMGInterface.hxx │ │ │ │ │ │ ├── GAMGInterfaceNew.cxx │ │ │ │ │ │ ├── GAMGInterfaceTemplates.cxx-backup │ │ │ │ │ │ └── GAMGInterfaceTemplatesI.hxx │ │ │ │ │ │ ├── cyclicGAMGInterface │ │ │ │ │ │ ├── cyclicGAMGInterface.cxx │ │ │ │ │ │ └── cyclicGAMGInterface.hxx │ │ │ │ │ │ ├── processorCyclicGAMGInterface │ │ │ │ │ │ ├── processorCyclicGAMGInterface.cxx │ │ │ │ │ │ └── processorCyclicGAMGInterface.hxx │ │ │ │ │ │ └── processorGAMGInterface │ │ │ │ │ │ ├── processorGAMGInterface.cxx │ │ │ │ │ │ └── processorGAMGInterface.hxx │ │ │ │ ├── PBiCCCG │ │ │ │ │ ├── PBiCCCG.cxx-backup │ │ │ │ │ ├── PBiCCCG.hxx │ │ │ │ │ └── PBiCCCGI.hxx │ │ │ │ ├── PBiCG │ │ │ │ │ ├── PBiCG.cxx │ │ │ │ │ └── PBiCG.hxx │ │ │ │ ├── PBiCGStab │ │ │ │ │ ├── PBiCGStab.cxx │ │ │ │ │ └── PBiCGStab.hxx │ │ │ │ ├── PBiCICG │ │ │ │ │ ├── PBiCICG.cxx-backup │ │ │ │ │ ├── PBiCICG.hxx │ │ │ │ │ └── PBiCICGI.hxx │ │ │ │ ├── PCG │ │ │ │ │ ├── PCG.cxx │ │ │ │ │ └── PCG.hxx │ │ │ │ ├── PCICG │ │ │ │ │ ├── PCICG.cxx-backup │ │ │ │ │ ├── PCICG.hxx │ │ │ │ │ └── PCICGI.hxx │ │ │ │ ├── SmoothSolver │ │ │ │ │ ├── SmoothSolverTemplate.cxx-backup │ │ │ │ │ ├── SmoothSolverTemplate.hxx │ │ │ │ │ ├── SmoothSolverTemplateI.hxx │ │ │ │ │ ├── smoothSolver.cxx │ │ │ │ │ └── smoothSolver.hxx │ │ │ │ └── lduSolvers.cxx │ │ │ └── lduAddressing │ │ │ │ ├── lduAddressing.cxx │ │ │ │ ├── lduAddressing.hxx │ │ │ │ ├── lduInterface │ │ │ │ ├── cyclicLduInterface.cxx │ │ │ │ ├── cyclicLduInterface.hxx │ │ │ │ ├── lduInterface.cxx │ │ │ │ ├── lduInterface.hxx │ │ │ │ ├── lduInterfacePtrsList.hxx │ │ │ │ ├── processorLduInterface.cxx │ │ │ │ ├── processorLduInterface.hxx │ │ │ │ ├── processorLduInterfaceTemplates.cxx-backup │ │ │ │ └── processorLduInterfaceTemplatesI.hxx │ │ │ │ ├── lduInterfaceFields │ │ │ │ ├── cyclicLduInterfaceField │ │ │ │ │ ├── cyclicLduInterfaceField.cxx │ │ │ │ │ └── cyclicLduInterfaceField.hxx │ │ │ │ ├── lduInterfaceField │ │ │ │ │ ├── lduInterfaceField.cxx │ │ │ │ │ ├── lduInterfaceField.hxx │ │ │ │ │ └── lduInterfaceFieldPtrsList.hxx │ │ │ │ └── processorLduInterfaceField │ │ │ │ │ ├── processorLduInterfaceField.cxx │ │ │ │ │ └── processorLduInterfaceField.hxx │ │ │ │ └── lduSchedule │ │ │ │ └── lduSchedule.hxx │ │ ├── Matrix │ │ │ ├── Matrix.cxx-backup │ │ │ ├── Matrix.hxx │ │ │ ├── MatrixI.hxx │ │ │ ├── MatrixIO.cxx-backup │ │ │ ├── MatrixIO_Imp.hxx │ │ │ └── Matrix_Imp.hxx │ │ ├── MatrixBlock │ │ │ ├── MatrixBlock.cxx-backup │ │ │ ├── MatrixBlock.hxx │ │ │ ├── MatrixBlockI.hxx │ │ │ └── MatrixBlock_Imp.hxx │ │ ├── QRMatrix │ │ │ ├── QRMatrix.cxx-backup │ │ │ ├── QRMatrix.hxx │ │ │ ├── QRMatrixI.hxx │ │ │ └── QRMatrix_Imp.hxx │ │ ├── RectangularMatrix │ │ │ ├── RectangularMatrix.cxx │ │ │ ├── RectangularMatrix.hxx │ │ │ └── RectangularMatrixI.hxx │ │ ├── SquareMatrix │ │ │ ├── SquareMatrix.cxx-backup │ │ │ ├── SquareMatrix.hxx │ │ │ ├── SquareMatrixI.hxx │ │ │ └── SquareMatrix_Imp.hxx │ │ ├── SymmetricSquareMatrix │ │ │ ├── SymmetricSquareMatrix.cxx-backup │ │ │ ├── SymmetricSquareMatrix.hxx │ │ │ ├── SymmetricSquareMatrixI.hxx │ │ │ └── SymmetricSquareMatrix_Imp.hxx │ │ ├── scalarMatrices │ │ │ ├── SVD │ │ │ │ ├── SVD.cxx │ │ │ │ ├── SVD.hxx │ │ │ │ └── SVDI.hxx │ │ │ ├── scalarMatrices.cxx │ │ │ ├── scalarMatrices.hxx │ │ │ ├── scalarMatricesTemplates.cxx-backup │ │ │ └── scalarMatricesTemplatesI.hxx │ │ ├── simpleMatrix │ │ │ ├── simpleMatrix.cxx-backup │ │ │ ├── simpleMatrix.hxx │ │ │ └── simpleMatrixI.hxx │ │ ├── solution │ │ │ ├── solution.cxx │ │ │ ├── solution.hxx │ │ │ ├── solutionTemplates.cxx-backup │ │ │ └── solutionTemplatesI.hxx │ │ └── tolerances │ │ │ ├── tolerances.cxx │ │ │ └── tolerances.hxx │ │ ├── memory │ │ ├── UautoPtr │ │ │ ├── UautoPtr.hxx │ │ │ └── UautoPtrI.hxx │ │ ├── autoPtr │ │ │ ├── autoPtr.hxx │ │ │ └── autoPtrI.hxx │ │ ├── refCount │ │ │ └── refCount.hxx │ │ ├── tmp │ │ │ ├── tmp.hxx │ │ │ └── tmpI.hxx │ │ └── tmpNrc │ │ │ ├── tmpNrc.hxx │ │ │ └── tmpNrcI.hxx │ │ ├── meshes │ │ ├── GeoMesh │ │ │ └── GeoMesh.hxx │ │ ├── Identifiers │ │ │ ├── DynamicID │ │ │ │ └── DynamicID.hxx │ │ │ ├── patch │ │ │ │ ├── coupleGroupIdentifier.cxx │ │ │ │ ├── coupleGroupIdentifier.hxx │ │ │ │ ├── coupleGroupIdentifierI.hxx │ │ │ │ ├── patchIdentifier.cxx │ │ │ │ ├── patchIdentifier.hxx │ │ │ │ └── polyPatchID.hxx │ │ │ └── zones │ │ │ │ └── ZoneIDs.hxx │ │ ├── MeshObject │ │ │ ├── MeshObject.cxx │ │ │ ├── MeshObject.hxx │ │ │ ├── MeshObjectTemplates.cxx-backup │ │ │ └── MeshObjectTemplatesI.hxx │ │ ├── ProcessorTopology │ │ │ ├── ProcessorTopologyTemplate.cxx-backup │ │ │ ├── ProcessorTopologyTemplate.hxx │ │ │ ├── ProcessorTopologyTemplateI.hxx │ │ │ ├── commSchedule.cxx │ │ │ └── commSchedule.hxx │ │ ├── Residuals │ │ │ ├── Residuals.cxx │ │ │ ├── ResidualsTemplate.hxx │ │ │ ├── ResidualsTemplateI.hxx │ │ │ └── ResidualsTemplates.cxx-backup │ │ ├── bandCompression │ │ │ ├── bandCompression.cxx │ │ │ └── bandCompression.hxx │ │ ├── boundBox │ │ │ ├── boundBox.cxx │ │ │ ├── boundBox.hxx │ │ │ ├── boundBoxI.hxx │ │ │ ├── boundBoxTemplates.cxx-backup │ │ │ └── boundBoxTemplatesI.hxx │ │ ├── data │ │ │ ├── data.cxx │ │ │ └── data.hxx │ │ ├── lduMesh │ │ │ ├── lduMesh.cxx │ │ │ ├── lduMesh.hxx │ │ │ ├── lduMeshTemplates.cxx-backup │ │ │ ├── lduMeshTemplatesI.hxx │ │ │ ├── lduPrimitiveMesh.cxx │ │ │ ├── lduPrimitiveMesh.hxx │ │ │ ├── lduPrimitiveMeshTemplates.cxx-backup │ │ │ └── lduPrimitiveMeshTemplatesI.hxx │ │ ├── meshShapes │ │ │ ├── cell │ │ │ │ ├── cell.cxx │ │ │ │ ├── cell.hxx │ │ │ │ ├── cellI.hxx │ │ │ │ ├── cellIOList.cxx │ │ │ │ ├── cellIOList.hxx │ │ │ │ ├── cellList.hxx │ │ │ │ ├── oppositeCellFace.cxx │ │ │ │ └── pyramidPointFaceRef.hxx │ │ │ ├── cellMatcher │ │ │ │ ├── cellMatcher.cxx │ │ │ │ ├── cellMatcher.hxx │ │ │ │ ├── cellMatcherI.hxx │ │ │ │ ├── degenerateMatcher.cxx │ │ │ │ ├── degenerateMatcher.hxx │ │ │ │ ├── hexMatcher.cxx │ │ │ │ ├── hexMatcher.hxx │ │ │ │ ├── prismMatcher.cxx │ │ │ │ ├── prismMatcher.hxx │ │ │ │ ├── pyrMatcher.cxx │ │ │ │ ├── pyrMatcher.hxx │ │ │ │ ├── tetMatcher.cxx │ │ │ │ ├── tetMatcher.hxx │ │ │ │ ├── tetWedgeMatcher.cxx │ │ │ │ ├── tetWedgeMatcher.hxx │ │ │ │ ├── wedgeMatcher.cxx │ │ │ │ └── wedgeMatcher.hxx │ │ │ ├── cellModel │ │ │ │ ├── cellModel.cxx │ │ │ │ ├── cellModel.hxx │ │ │ │ ├── cellModelI.hxx │ │ │ │ └── cellModelIO.cxx │ │ │ ├── cellModeller │ │ │ │ ├── cellModeller.cxx │ │ │ │ └── cellModeller.hxx │ │ │ ├── cellShape │ │ │ │ ├── cellShape.cxx │ │ │ │ ├── cellShape.hxx │ │ │ │ ├── cellShapeEqual.cxx │ │ │ │ ├── cellShapeI.hxx │ │ │ │ ├── cellShapeIO.cxx │ │ │ │ ├── cellShapeIOList.cxx │ │ │ │ ├── cellShapeIOList.hxx │ │ │ │ └── cellShapeList.hxx │ │ │ ├── edge │ │ │ │ ├── EdgeMap.hxx │ │ │ │ ├── edge.cxx │ │ │ │ ├── edge.hxx │ │ │ │ ├── edgeI.hxx │ │ │ │ ├── edgeIOList.cxx │ │ │ │ ├── edgeIOList.hxx │ │ │ │ └── edgeList.hxx │ │ │ ├── face │ │ │ │ ├── face.cxx │ │ │ │ ├── face.hxx │ │ │ │ ├── faceAreaInContact.cxx │ │ │ │ ├── faceContactSphere.cxx │ │ │ │ ├── faceI.hxx │ │ │ │ ├── faceIOList.cxx │ │ │ │ ├── faceIOList.hxx │ │ │ │ ├── faceIntersection.cxx │ │ │ │ ├── faceList.hxx │ │ │ │ ├── faceListFwd.hxx │ │ │ │ ├── faceTemplates.cxx-backup │ │ │ │ ├── faceTemplatesI.hxx │ │ │ │ └── oppositeFace.hxx │ │ │ ├── tetCell │ │ │ │ ├── tetCell.cxx │ │ │ │ ├── tetCell.hxx │ │ │ │ ├── tetCellI.hxx │ │ │ │ └── tetCellList.hxx │ │ │ └── triFace │ │ │ │ ├── triFace.hxx │ │ │ │ ├── triFaceI.hxx │ │ │ │ ├── triFaceList.hxx │ │ │ │ ├── triFaceTemplates.cxx-backup │ │ │ │ └── triFaceTemplatesI.hxx │ │ ├── meshTools │ │ │ ├── matchPoints.cxx │ │ │ ├── matchPoints.hxx │ │ │ ├── mergePoints.cxx-backup │ │ │ ├── mergePoints.hxx │ │ │ └── mergePointsI.hxx │ │ ├── pointMesh │ │ │ ├── pointBoundaryMesh │ │ │ │ ├── pointBoundaryMesh.cxx │ │ │ │ └── pointBoundaryMesh.hxx │ │ │ ├── pointMesh.cxx │ │ │ ├── pointMesh.hxx │ │ │ ├── pointMeshMapper │ │ │ │ ├── MapPointField.hxx │ │ │ │ ├── pointBoundaryMeshMapper.hxx │ │ │ │ ├── pointMapper.cxx │ │ │ │ ├── pointMapper.hxx │ │ │ │ ├── pointMeshMapper.hxx │ │ │ │ ├── pointPatchMapper.cxx │ │ │ │ └── pointPatchMapper.hxx │ │ │ └── pointPatches │ │ │ │ ├── basic │ │ │ │ ├── coupled │ │ │ │ │ ├── coupledPointPatch.cxx │ │ │ │ │ └── coupledPointPatch.hxx │ │ │ │ └── generic │ │ │ │ │ ├── genericPointPatch.cxx │ │ │ │ │ └── genericPointPatch.hxx │ │ │ │ ├── constraint │ │ │ │ ├── cyclic │ │ │ │ │ ├── cyclicPointPatch.cxx │ │ │ │ │ └── cyclicPointPatch.hxx │ │ │ │ ├── cyclicSlip │ │ │ │ │ ├── cyclicSlipPointPatch.cxx │ │ │ │ │ └── cyclicSlipPointPatch.hxx │ │ │ │ ├── empty │ │ │ │ │ ├── emptyPointPatch.cxx │ │ │ │ │ └── emptyPointPatch.hxx │ │ │ │ ├── nonuniformTransformCyclic │ │ │ │ │ ├── nonuniformTransformCyclicPointPatch.cxx │ │ │ │ │ └── nonuniformTransformCyclicPointPatch.hxx │ │ │ │ ├── processor │ │ │ │ │ ├── processorPointPatch.cxx │ │ │ │ │ └── processorPointPatch.hxx │ │ │ │ ├── processorCyclic │ │ │ │ │ ├── processorCyclicPointPatch.cxx │ │ │ │ │ └── processorCyclicPointPatch.hxx │ │ │ │ ├── symmetry │ │ │ │ │ ├── symmetryPointPatch.cxx │ │ │ │ │ └── symmetryPointPatch.hxx │ │ │ │ ├── symmetryPlane │ │ │ │ │ ├── symmetryPlanePointPatch.cxx │ │ │ │ │ └── symmetryPlanePointPatch.hxx │ │ │ │ └── wedge │ │ │ │ │ ├── wedgePointPatch.cxx │ │ │ │ │ └── wedgePointPatch.hxx │ │ │ │ ├── derived │ │ │ │ ├── coupled │ │ │ │ │ ├── coupledFacePointPatch.cxx │ │ │ │ │ └── coupledFacePointPatch.hxx │ │ │ │ └── wall │ │ │ │ │ ├── wallPointPatch.cxx │ │ │ │ │ └── wallPointPatch.hxx │ │ │ │ ├── facePointPatch │ │ │ │ ├── facePointPatch.cxx │ │ │ │ ├── facePointPatch.hxx │ │ │ │ └── facePointPatchNew.cxx │ │ │ │ └── pointPatch │ │ │ │ ├── pointPatch.cxx │ │ │ │ ├── pointPatch.hxx │ │ │ │ └── pointPatchList.hxx │ │ ├── polyMesh │ │ │ ├── globalMeshData │ │ │ │ ├── globalIndex.cxx │ │ │ │ ├── globalIndex.hxx │ │ │ │ ├── globalIndexI.hxx │ │ │ │ ├── globalIndexTemplates.cxx-backup │ │ │ │ ├── globalIndexTemplatesI.hxx │ │ │ │ ├── globalMeshData.cxx │ │ │ │ ├── globalMeshData.hxx │ │ │ │ ├── globalMeshDataTemplates.cxx-backup │ │ │ │ ├── globalMeshDataTemplatesI.hxx │ │ │ │ ├── globalPoints.cxx │ │ │ │ ├── globalPoints.hxx │ │ │ │ └── processorTopology.hxx │ │ │ ├── mapPolyMesh │ │ │ │ ├── cellMapper │ │ │ │ │ ├── cellMapper.cxx │ │ │ │ │ └── cellMapper.hxx │ │ │ │ ├── faceMapper │ │ │ │ │ ├── faceMapper.cxx │ │ │ │ │ └── faceMapper.hxx │ │ │ │ ├── mapAddedPolyMesh.cxx │ │ │ │ ├── mapAddedPolyMesh.hxx │ │ │ │ ├── mapDistribute │ │ │ │ │ ├── IOmapDistribute.cxx │ │ │ │ │ ├── IOmapDistribute.hxx │ │ │ │ │ ├── mapDistribute.cxx │ │ │ │ │ ├── mapDistribute.hxx │ │ │ │ │ ├── mapDistributeBase.cxx │ │ │ │ │ ├── mapDistributeBase.hxx │ │ │ │ │ ├── mapDistributeBaseTemplates.cxx-backup │ │ │ │ │ ├── mapDistributeBaseTemplatesI.hxx │ │ │ │ │ ├── mapDistributeLagrangian.hxx │ │ │ │ │ ├── mapDistributePolyMesh.cxx │ │ │ │ │ ├── mapDistributePolyMesh.hxx │ │ │ │ │ ├── mapDistributeTemplates.cxx-backup │ │ │ │ │ └── mapDistributeTemplatesI.hxx │ │ │ │ ├── mapPatchChange │ │ │ │ │ └── mapPatchChange.hxx │ │ │ │ ├── mapPolyMesh.cxx │ │ │ │ ├── mapPolyMesh.hxx │ │ │ │ ├── mapSubsetMesh │ │ │ │ │ └── mapSubsetMesh.hxx │ │ │ │ ├── morphFieldMapper.hxx │ │ │ │ └── objectMap │ │ │ │ │ ├── objectMap.hxx │ │ │ │ │ └── objectMapI.hxx │ │ │ ├── polyBoundaryMesh │ │ │ │ ├── polyBoundaryMesh.cxx │ │ │ │ ├── polyBoundaryMesh.hxx │ │ │ │ ├── polyBoundaryMeshEntries.cxx │ │ │ │ ├── polyBoundaryMeshEntries.hxx │ │ │ │ ├── polyBoundaryMeshTemplates.cxx-backup │ │ │ │ └── polyBoundaryMeshTemplatesI.hxx │ │ │ ├── polyMesh.cxx │ │ │ ├── polyMesh.hxx │ │ │ ├── polyMeshCheck │ │ │ │ ├── polyMeshCheck.cxx │ │ │ │ ├── polyMeshTools.cxx │ │ │ │ └── polyMeshTools.hxx │ │ │ ├── polyMeshClear.cxx │ │ │ ├── polyMeshFromShapeMesh.cxx │ │ │ ├── polyMeshIO.cxx │ │ │ ├── polyMeshInitMesh.cxx │ │ │ ├── polyMeshTetDecomposition │ │ │ │ ├── polyMeshTetDecomposition.cxx │ │ │ │ ├── polyMeshTetDecomposition.hxx │ │ │ │ ├── tetIndices.cxx │ │ │ │ ├── tetIndices.hxx │ │ │ │ └── tetIndicesI.hxx │ │ │ ├── polyMeshUpdate.cxx │ │ │ ├── polyPatches │ │ │ │ ├── basic │ │ │ │ │ ├── coupled │ │ │ │ │ │ ├── coupledPolyPatch.cxx │ │ │ │ │ │ └── coupledPolyPatch.hxx │ │ │ │ │ └── generic │ │ │ │ │ │ ├── genericPolyPatch.cxx │ │ │ │ │ │ └── genericPolyPatch.hxx │ │ │ │ ├── constraint │ │ │ │ │ ├── cyclic │ │ │ │ │ │ ├── cyclicPolyPatch.cxx │ │ │ │ │ │ └── cyclicPolyPatch.hxx │ │ │ │ │ ├── cyclicSlip │ │ │ │ │ │ ├── cyclicSlipPolyPatch.cxx │ │ │ │ │ │ └── cyclicSlipPolyPatch.hxx │ │ │ │ │ ├── empty │ │ │ │ │ │ ├── emptyPolyPatch.cxx │ │ │ │ │ │ └── emptyPolyPatch.hxx │ │ │ │ │ ├── nonuniformTransformCyclic │ │ │ │ │ │ ├── nonuniformTransformCyclicPolyPatch.cxx │ │ │ │ │ │ └── nonuniformTransformCyclicPolyPatch.hxx │ │ │ │ │ ├── oldCyclic │ │ │ │ │ │ ├── oldCyclicPolyPatch.cxx │ │ │ │ │ │ └── oldCyclicPolyPatch.hxx │ │ │ │ │ ├── processor │ │ │ │ │ │ ├── processorPolyPatch.cxx │ │ │ │ │ │ └── processorPolyPatch.hxx │ │ │ │ │ ├── processorCyclic │ │ │ │ │ │ ├── processorCyclicPolyPatch.cxx │ │ │ │ │ │ └── processorCyclicPolyPatch.hxx │ │ │ │ │ ├── symmetry │ │ │ │ │ │ ├── symmetryPolyPatch.cxx │ │ │ │ │ │ └── symmetryPolyPatch.hxx │ │ │ │ │ ├── symmetryPlane │ │ │ │ │ │ ├── symmetryPlanePolyPatch.cxx │ │ │ │ │ │ └── symmetryPlanePolyPatch.hxx │ │ │ │ │ └── wedge │ │ │ │ │ │ ├── wedgePolyPatch.cxx │ │ │ │ │ │ └── wedgePolyPatch.hxx │ │ │ │ ├── derived │ │ │ │ │ └── wall │ │ │ │ │ │ ├── wallPolyPatch.cxx │ │ │ │ │ │ └── wallPolyPatch.hxx │ │ │ │ └── polyPatch │ │ │ │ │ ├── polyPatch.cxx │ │ │ │ │ ├── polyPatch.hxx │ │ │ │ │ ├── polyPatchList.hxx │ │ │ │ │ └── polyPatchNew.cxx │ │ │ ├── syncTools │ │ │ │ ├── dummyTransform.hxx │ │ │ │ ├── syncTools.cxx │ │ │ │ ├── syncTools.hxx │ │ │ │ ├── syncToolsI.hxx │ │ │ │ └── syncToolsTemplates.cxx-backup │ │ │ └── zones │ │ │ │ ├── ZoneMesh │ │ │ │ ├── ZoneMesh.cxx-backup │ │ │ │ ├── ZoneMesh.hxx │ │ │ │ ├── ZoneMeshI.hxx │ │ │ │ ├── cellZoneMesh.hxx │ │ │ │ ├── cellZoneMeshFwd.hxx │ │ │ │ ├── faceZoneMesh.hxx │ │ │ │ ├── faceZoneMeshFwd.hxx │ │ │ │ ├── pointZoneMesh.hxx │ │ │ │ └── pointZoneMeshFwd.hxx │ │ │ │ ├── cellZone │ │ │ │ ├── cellZone.cxx │ │ │ │ ├── cellZone.hxx │ │ │ │ ├── cellZoneNew.cxx │ │ │ │ └── indirectCellList.hxx │ │ │ │ ├── faceZone │ │ │ │ ├── faceZone.cxx │ │ │ │ ├── faceZone.hxx │ │ │ │ ├── faceZoneNew.cxx │ │ │ │ ├── indirectFaceList.hxx │ │ │ │ └── primitiveFaceZone.hxx │ │ │ │ ├── pointZone │ │ │ │ ├── indirectPointList.hxx │ │ │ │ ├── pointZone.cxx │ │ │ │ ├── pointZone.hxx │ │ │ │ └── pointZoneNew.cxx │ │ │ │ └── zone │ │ │ │ ├── zone.cxx │ │ │ │ └── zone.hxx │ │ ├── preservePatchTypes │ │ │ ├── preservePatchTypes.cxx │ │ │ └── preservePatchTypes.hxx │ │ ├── primitiveMesh │ │ │ ├── PatchTools │ │ │ │ ├── PatchTools.cxx-backup │ │ │ │ ├── PatchTools.hxx │ │ │ │ ├── PatchToolsCheck.cxx-backup │ │ │ │ ├── PatchToolsCheckI.hxx │ │ │ │ ├── PatchToolsEdgeOwner.cxx-backup │ │ │ │ ├── PatchToolsEdgeOwnerI.hxx │ │ │ │ ├── PatchToolsGatherAndMerge.cxx-backup │ │ │ │ ├── PatchToolsGatherAndMergeI.hxx │ │ │ │ ├── PatchToolsMatch.cxx-backup │ │ │ │ ├── PatchToolsMatchI.hxx │ │ │ │ ├── PatchToolsNormals.cxx-backup │ │ │ │ ├── PatchToolsNormalsI.hxx │ │ │ │ ├── PatchToolsSearch.cxx-backup │ │ │ │ ├── PatchToolsSearchI.hxx │ │ │ │ ├── PatchToolsSortEdges.cxx-backup │ │ │ │ ├── PatchToolsSortEdgesI.hxx │ │ │ │ ├── PatchToolsSortPoints.cxx-backup │ │ │ │ └── PatchToolsSortPointsI.hxx │ │ │ ├── PrimitivePatch │ │ │ │ ├── PrimitivePatchAddressing.cxx-backup │ │ │ │ ├── PrimitivePatchAddressingI.hxx │ │ │ │ ├── PrimitivePatchBdryPoints.cxx-backup │ │ │ │ ├── PrimitivePatchBdryPointsI.hxx │ │ │ │ ├── PrimitivePatchCheck.cxx-backup │ │ │ │ ├── PrimitivePatchCheckI.hxx │ │ │ │ ├── PrimitivePatchClear.cxx-backup │ │ │ │ ├── PrimitivePatchClearI.hxx │ │ │ │ ├── PrimitivePatchEdgeLoops.cxx-backup │ │ │ │ ├── PrimitivePatchEdgeLoopsI.hxx │ │ │ │ ├── PrimitivePatchLocalPointOrder.cxx-backup │ │ │ │ ├── PrimitivePatchLocalPointOrderI.hxx │ │ │ │ ├── PrimitivePatchMeshData.cxx-backup │ │ │ │ ├── PrimitivePatchMeshDataI.hxx │ │ │ │ ├── PrimitivePatchMeshEdges.cxx-backup │ │ │ │ ├── PrimitivePatchMeshEdgesI.hxx │ │ │ │ ├── PrimitivePatchName.cxx │ │ │ │ ├── PrimitivePatchPointAddressing.cxx-backup │ │ │ │ ├── PrimitivePatchPointAddressingI.hxx │ │ │ │ ├── PrimitivePatchProjectPoints.cxx-backup │ │ │ │ ├── PrimitivePatchProjectPointsI.hxx │ │ │ │ ├── PrimitivePatchTemplate.cxx-backup │ │ │ │ ├── PrimitivePatchTemplate.hxx │ │ │ │ ├── PrimitivePatchTemplateI.hxx │ │ │ │ ├── indirectPrimitivePatch.hxx │ │ │ │ ├── patchZones.cxx │ │ │ │ ├── patchZones.hxx │ │ │ │ ├── primitiveFacePatch.hxx │ │ │ │ ├── primitivePatch.hxx │ │ │ │ ├── uindirectPrimitivePatch.hxx │ │ │ │ ├── walkPatch.cxx │ │ │ │ └── walkPatch.hxx │ │ │ ├── primitiveMesh.cxx │ │ │ ├── primitiveMesh.hxx │ │ │ ├── primitiveMeshCalcCellShapes.cxx │ │ │ ├── primitiveMeshCellCells.cxx │ │ │ ├── primitiveMeshCellCentresAndVols.cxx │ │ │ ├── primitiveMeshCellEdges.cxx │ │ │ ├── primitiveMeshCellPoints.cxx │ │ │ ├── primitiveMeshCells.cxx │ │ │ ├── primitiveMeshCheck │ │ │ │ ├── primitiveMeshCheck.cxx │ │ │ │ ├── primitiveMeshCheckEdgeLength.cxx │ │ │ │ ├── primitiveMeshCheckPointNearness.cxx │ │ │ │ ├── primitiveMeshTools.cxx │ │ │ │ └── primitiveMeshTools.hxx │ │ │ ├── primitiveMeshClear.cxx │ │ │ ├── primitiveMeshEdgeCells.cxx │ │ │ ├── primitiveMeshEdgeFaces.cxx │ │ │ ├── primitiveMeshEdges.cxx │ │ │ ├── primitiveMeshFaceCentresAndAreas.cxx │ │ │ ├── primitiveMeshFindCell.cxx │ │ │ ├── primitiveMeshI.hxx │ │ │ ├── primitiveMeshPointCells.cxx │ │ │ ├── primitiveMeshPointFaces.cxx │ │ │ └── primitiveMeshPointPoints.cxx │ │ ├── primitiveShapes │ │ │ ├── cut │ │ │ │ ├── cut.hxx │ │ │ │ ├── cutI.hxx │ │ │ │ ├── cutTemplates.cxx-backup │ │ │ │ └── cutTemplatesI.hxx │ │ │ ├── line │ │ │ │ ├── line.cxx │ │ │ │ ├── line.hxx │ │ │ │ ├── lineI.hxx │ │ │ │ ├── linePoint2DRef.hxx │ │ │ │ └── linePointRef.hxx │ │ │ ├── objectHit │ │ │ │ ├── PointHitTemplate.hxx │ │ │ │ ├── PointIndexHitTemplate.hxx │ │ │ │ ├── objectHit.hxx │ │ │ │ ├── point2DHit.hxx │ │ │ │ ├── pointHit.hxx │ │ │ │ ├── pointHitSort.hxx │ │ │ │ ├── pointIndexHit.hxx │ │ │ │ ├── pointIndexHitIOList.cxx │ │ │ │ ├── pointIndexHitIOList.hxx │ │ │ │ ├── pointIndexHitList.cxx │ │ │ │ └── pointIndexHitList.hxx │ │ │ ├── plane │ │ │ │ ├── plane.cxx │ │ │ │ └── plane.hxx │ │ │ ├── point │ │ │ │ ├── point.hxx │ │ │ │ ├── pointField.hxx │ │ │ │ ├── pointFieldFwd.hxx │ │ │ │ └── pointIOField.hxx │ │ │ ├── point2D │ │ │ │ ├── point2D.hxx │ │ │ │ ├── point2DField.hxx │ │ │ │ └── point2DFieldFwd.hxx │ │ │ ├── pyramid │ │ │ │ ├── pyramid.hxx │ │ │ │ └── pyramidI.hxx │ │ │ ├── tetrahedron │ │ │ │ ├── tetPointRef.hxx │ │ │ │ ├── tetrahedron.cxx-backup │ │ │ │ ├── tetrahedron.hxx │ │ │ │ ├── tetrahedronI.hxx │ │ │ │ └── tetrahedron_Imp.hxx │ │ │ └── triangle │ │ │ │ ├── intersection.cxx │ │ │ │ ├── intersection.hxx │ │ │ │ ├── triPointRef.hxx │ │ │ │ ├── triangle.cxx │ │ │ │ ├── triangle.hxx │ │ │ │ └── triangleI.hxx │ │ └── treeBoundBox │ │ │ ├── treeBoundBox.cxx │ │ │ ├── treeBoundBox.hxx │ │ │ ├── treeBoundBoxI.hxx │ │ │ ├── treeBoundBoxList.hxx │ │ │ ├── treeBoundBoxTemplates.cxx-backup │ │ │ └── treeBoundBoxTemplatesI.hxx │ │ ├── module │ │ ├── Base_Module.hxx │ │ ├── includeAllModules.hxx │ │ └── includeModule.hxx │ │ └── primitives │ │ ├── Barycentric │ │ ├── BarycentricTemplate.hxx │ │ ├── BarycentricTemplateI.hxx │ │ ├── BarycentricTensorTemplate.hxx │ │ ├── BarycentricTensorTemplateI.hxx │ │ ├── barycentric │ │ │ ├── barycentric.cxx │ │ │ └── barycentric.hxx │ │ └── barycentricTensor │ │ │ └── barycentricTensor.hxx │ │ ├── Barycentric2D │ │ ├── Barycentric2DTemplate.hxx │ │ ├── Barycentric2DTemplateI.hxx │ │ └── barycentric2D │ │ │ ├── barycentric2D.cxx │ │ │ └── barycentric2D.hxx │ │ ├── DiagTensor │ │ ├── DiagTensorTemplate.hxx │ │ ├── DiagTensorTemplateI.hxx │ │ └── diagTensor │ │ │ ├── diagTensor.cxx │ │ │ └── diagTensor.hxx │ │ ├── MatrixSpace │ │ ├── MatrixSpace.hxx │ │ └── MatrixSpaceI.hxx │ │ ├── Pair │ │ ├── Pair.hxx │ │ └── labelPair.hxx │ │ ├── Random │ │ ├── Random.cxx │ │ ├── Random.hxx │ │ └── RandomI.hxx │ │ ├── RowVector │ │ ├── RowVector.hxx │ │ └── RowVectorI.hxx │ │ ├── Scalar │ │ ├── doubleFloat.hxx │ │ ├── doubleScalar │ │ │ ├── doubleScalar.cxx │ │ │ └── doubleScalar.hxx │ │ ├── floatScalar │ │ │ ├── floatScalar.cxx │ │ │ └── floatScalar.hxx │ │ ├── lists │ │ │ ├── scalarIOList.cxx │ │ │ ├── scalarIOList.hxx │ │ │ ├── scalarList.cxx │ │ │ ├── scalarList.hxx │ │ │ ├── scalarListIOList.cxx │ │ │ └── scalarListIOList.hxx │ │ ├── longDoubleScalar │ │ │ ├── longDoubleScalar.cxx │ │ │ └── longDoubleScalar.hxx │ │ └── scalar │ │ │ ├── incGamma.cxx │ │ │ ├── invIncGamma.cxx │ │ │ ├── scalar.cxx │ │ │ └── scalar.hxx │ │ ├── SphericalTensor │ │ ├── Identity.hxx │ │ ├── SphericalTensorTemplate.hxx │ │ ├── SphericalTensorTemplateI.hxx │ │ ├── labelSphericalTensor │ │ │ ├── labelSphericalTensor.cxx │ │ │ └── labelSphericalTensor.hxx │ │ └── sphericalTensor │ │ │ ├── sphericalTensor.cxx │ │ │ └── sphericalTensor.hxx │ │ ├── SphericalTensor2D │ │ ├── SphericalTensor2DTemplate.hxx │ │ ├── SphericalTensor2DTemplateI.hxx │ │ └── sphericalTensor2D │ │ │ ├── sphericalTensor2D.cxx │ │ │ └── sphericalTensor2D.hxx │ │ ├── Swap │ │ └── Swap.hxx │ │ ├── SymmTensor │ │ ├── SymmTensorTemplate.hxx │ │ ├── SymmTensorTemplateI.hxx │ │ ├── labelSymmTensor │ │ │ ├── labelSymmTensor.cxx │ │ │ └── labelSymmTensor.hxx │ │ └── symmTensor │ │ │ ├── symmTensor.cxx │ │ │ └── symmTensor.hxx │ │ ├── SymmTensor2D │ │ ├── SymmTensor2DTemplate.hxx │ │ ├── SymmTensor2DTemplateI.hxx │ │ └── symmTensor2D │ │ │ ├── symmTensor2D.cxx │ │ │ └── symmTensor2D.hxx │ │ ├── Tensor │ │ ├── TensorTemplate.hxx │ │ ├── TensorTemplateI.hxx │ │ ├── floatTensor │ │ │ ├── floatTensor.cxx │ │ │ └── floatTensor.hxx │ │ ├── labelTensor │ │ │ ├── labelTensor.cxx │ │ │ └── labelTensor.hxx │ │ ├── lists │ │ │ ├── sphericalTensorList.cxx │ │ │ ├── sphericalTensorList.hxx │ │ │ ├── symmTensorList.cxx │ │ │ ├── symmTensorList.hxx │ │ │ ├── tensorList.cxx │ │ │ └── tensorList.hxx │ │ └── tensor │ │ │ ├── tensor.cxx │ │ │ └── tensor.hxx │ │ ├── Tensor2D │ │ ├── Tensor2DTemplate.hxx │ │ ├── Tensor2DTemplateI.hxx │ │ └── tensor2D │ │ │ ├── tensor2D.cxx │ │ │ └── tensor2D.hxx │ │ ├── Tuple2 │ │ └── Tuple2.hxx │ │ ├── Vector │ │ ├── VectorTemplate.hxx │ │ ├── VectorTemplateI.hxx │ │ ├── complexVector │ │ │ ├── complexVector.cxx │ │ │ ├── complexVector.hxx │ │ │ └── complexVectorI.hxx │ │ ├── floatVector │ │ │ ├── floatVector.cxx │ │ │ └── floatVector.hxx │ │ ├── labelVector │ │ │ ├── labelVector.cxx │ │ │ └── labelVector.hxx │ │ ├── lists │ │ │ ├── vectorIOList.cxx │ │ │ ├── vectorIOList.hxx │ │ │ ├── vectorList.cxx │ │ │ ├── vectorList.hxx │ │ │ ├── vectorListIOList.cxx │ │ │ └── vectorListIOList.hxx │ │ └── vector │ │ │ ├── vector.cxx │ │ │ └── vector.hxx │ │ ├── Vector2D │ │ ├── Vector2DTemplate.hxx │ │ ├── Vector2DTemplateI.hxx │ │ └── vector2D │ │ │ ├── vector2D.cxx │ │ │ └── vector2D.hxx │ │ ├── VectorSpace │ │ ├── VectorSpace.cxx-backup │ │ ├── VectorSpace.hxx │ │ ├── VectorSpaceI.hxx │ │ ├── VectorSpaceOps.hxx │ │ ├── VectorSpace_Imp.hxx │ │ └── products.hxx │ │ ├── bools │ │ ├── Switch │ │ │ ├── Switch.cxx │ │ │ ├── Switch.hxx │ │ │ └── SwitchIO.cxx │ │ ├── bool │ │ │ ├── bool.cxx │ │ │ ├── bool.hxx │ │ │ └── boolIO.cxx │ │ └── lists │ │ │ ├── boolList.cxx │ │ │ └── boolList.hxx │ │ ├── chars │ │ ├── char │ │ │ ├── char.hxx │ │ │ └── charIO.cxx │ │ └── wchar │ │ │ ├── wchar.hxx │ │ │ └── wcharIO.cxx │ │ ├── complex │ │ ├── complex.cxx │ │ ├── complex.hxx │ │ └── complexI.hxx │ │ ├── contiguous │ │ └── contiguous.hxx │ │ ├── demandDrivenEntry │ │ ├── demandDrivenEntry.cxx-backup │ │ ├── demandDrivenEntry.hxx │ │ ├── demandDrivenEntryI.hxx │ │ └── demandDrivenEntry_Imp.hxx │ │ ├── direction │ │ ├── direction.hxx │ │ └── directionIO.cxx │ │ ├── functions │ │ ├── Function1 │ │ │ ├── CSV │ │ │ │ ├── CSV.cxx │ │ │ │ ├── CSV.cxx-backup │ │ │ │ ├── CSV.hxx │ │ │ │ └── CSVI.hxx │ │ │ ├── Constant │ │ │ │ ├── Constant.cxx-backup │ │ │ │ ├── Constant.hxx │ │ │ │ ├── ConstantI.hxx │ │ │ │ └── Constant_Imp.hxx │ │ │ ├── Function1 │ │ │ │ ├── Function1.cxx │ │ │ │ ├── Function1.cxx-backup │ │ │ │ ├── Function1.hxx │ │ │ │ ├── Function1Fwd.hxx │ │ │ │ ├── Function1I.hxx │ │ │ │ ├── Function1New.cxx-backup │ │ │ │ └── Function1New_Imp.hxx │ │ │ ├── One │ │ │ │ ├── OneConstant.cxx-backup │ │ │ │ ├── OneConstant.hxx │ │ │ │ ├── OneConstantI.hxx │ │ │ │ └── OneConstant_Imp.hxx │ │ │ ├── PolynomialEntry │ │ │ │ ├── PolynomialEntry.cxx-backup │ │ │ │ ├── PolynomialEntry.hxx │ │ │ │ └── PolynomialEntryI.hxx │ │ │ ├── Scale │ │ │ │ ├── Scale.cxx-backup │ │ │ │ ├── Scale.hxx │ │ │ │ ├── ScaleI.hxx │ │ │ │ └── Scale_Imp.hxx │ │ │ ├── Sine │ │ │ │ ├── Sine.cxx-backup │ │ │ │ ├── Sine.hxx │ │ │ │ ├── SineI.hxx │ │ │ │ └── Sine_Imp.hxx │ │ │ ├── Square │ │ │ │ ├── Square.cxx-backup │ │ │ │ ├── Square.hxx │ │ │ │ ├── SquareI.hxx │ │ │ │ └── Square_Imp.hxx │ │ │ ├── Table │ │ │ │ ├── Table.cxx-backup │ │ │ │ ├── Table.hxx │ │ │ │ ├── TableBase.cxx-backup │ │ │ │ ├── TableBase.hxx │ │ │ │ ├── TableBaseI.hxx │ │ │ │ └── TableI.hxx │ │ │ ├── TableFile │ │ │ │ ├── TableFile.cxx-backup │ │ │ │ ├── TableFile.hxx │ │ │ │ └── TableFileI.hxx │ │ │ ├── Uniform │ │ │ │ ├── UniformTemplate.cxx-backup │ │ │ │ ├── UniformTemplate.hxx │ │ │ │ └── UniformTemplateI.hxx │ │ │ ├── Zero │ │ │ │ ├── ZeroConstant.cxx-backup │ │ │ │ ├── ZeroConstant.hxx │ │ │ │ ├── ZeroConstantI.hxx │ │ │ │ └── ZeroConstant_Imp.hxx │ │ │ ├── halfCosineRamp │ │ │ │ ├── halfCosineRamp.cxx │ │ │ │ ├── halfCosineRamp.hxx │ │ │ │ └── halfCosineRampI.hxx │ │ │ ├── linearRamp │ │ │ │ ├── linearRamp.cxx │ │ │ │ ├── linearRamp.hxx │ │ │ │ └── linearRampI.hxx │ │ │ ├── makeFunction1s.cxx │ │ │ ├── quadraticRamp │ │ │ │ ├── quadraticRamp.cxx │ │ │ │ ├── quadraticRamp.hxx │ │ │ │ └── quadraticRampI.hxx │ │ │ ├── quarterCosineRamp │ │ │ │ ├── quarterCosineRamp.cxx │ │ │ │ ├── quarterCosineRamp.hxx │ │ │ │ └── quarterCosineRampI.hxx │ │ │ ├── quarterSineRamp │ │ │ │ ├── quarterSineRamp.cxx │ │ │ │ ├── quarterSineRamp.hxx │ │ │ │ └── quarterSineRampI.hxx │ │ │ └── ramp │ │ │ │ ├── ramp.cxx │ │ │ │ └── ramp.hxx │ │ ├── Polynomial │ │ │ ├── Polynomial.cxx-backup │ │ │ ├── Polynomial.hxx │ │ │ ├── PolynomialIO.cxx-backup │ │ │ ├── PolynomialIO_Imp.hxx │ │ │ └── Polynomial_Imp.hxx │ │ └── TimeFunction1 │ │ │ ├── TimeFunction1.cxx-backup │ │ │ ├── TimeFunction1.hxx │ │ │ └── TimeFunction1I.hxx │ │ ├── globalIndexAndTransform │ │ ├── globalIndexAndTransform.cxx │ │ ├── globalIndexAndTransform.hxx │ │ ├── globalIndexAndTransformI.hxx │ │ └── vectorTensorTransform │ │ │ ├── vectorTensorTransform.cxx │ │ │ ├── vectorTensorTransform.hxx │ │ │ ├── vectorTensorTransformI.hxx │ │ │ ├── vectorTensorTransformTemplates.cxx-backup │ │ │ └── vectorTensorTransformTemplatesI.hxx │ │ ├── hashes │ │ ├── Hash │ │ │ └── Hash.hxx │ │ ├── Hasher │ │ │ ├── Hasher.cxx │ │ │ ├── Hasher.hxx │ │ │ └── HasherInt.hxx │ │ └── SHA1 │ │ │ ├── SHA1.cxx │ │ │ ├── SHA1.hxx │ │ │ ├── SHA1Digest.cxx │ │ │ ├── SHA1Digest.hxx │ │ │ └── SHA1I.hxx │ │ ├── ints │ │ ├── int │ │ │ ├── int.hxx │ │ │ └── intIO.cxx │ │ ├── int32 │ │ │ ├── int32.cxx │ │ │ ├── int32.hxx │ │ │ └── int32IO.cxx │ │ ├── int64 │ │ │ ├── int64.cxx │ │ │ ├── int64.hxx │ │ │ └── int64IO.cxx │ │ ├── label │ │ │ ├── label.cxx │ │ │ ├── label.hxx │ │ │ └── labelSpecific.hxx │ │ ├── lists │ │ │ ├── labelIOList.cxx │ │ │ ├── labelIOList.hxx │ │ │ ├── labelList.hxx │ │ │ ├── labelListIOList.cxx │ │ │ └── labelListIOList.hxx │ │ ├── uLabel │ │ │ ├── uLabel.cxx │ │ │ └── uLabel.hxx │ │ ├── uint │ │ │ ├── uint.hxx │ │ │ └── uintIO.cxx │ │ ├── uint32 │ │ │ ├── uint32.cxx │ │ │ ├── uint32.hxx │ │ │ └── uint32IO.cxx │ │ └── uint64 │ │ │ ├── uint64.cxx │ │ │ ├── uint64.hxx │ │ │ └── uint64IO.cxx │ │ ├── nil │ │ └── nil.hxx │ │ ├── nullObject │ │ ├── nullObject.cxx │ │ ├── nullObject.hxx │ │ └── nullObjectI.hxx │ │ ├── one │ │ ├── one.cxx │ │ ├── one.hxx │ │ └── oneI.hxx │ │ ├── ops │ │ ├── flipOp.cxx │ │ ├── flipOp.hxx │ │ └── ops.hxx │ │ ├── pTraits │ │ └── pTraits.hxx │ │ ├── polynomialEqns │ │ ├── Roots.hxx │ │ ├── RootsI.hxx │ │ ├── cubicEqn │ │ │ ├── cubicEqn.cxx │ │ │ ├── cubicEqn.hxx │ │ │ └── cubicEqnI.hxx │ │ ├── linearEqn │ │ │ ├── linearEqn.hxx │ │ │ └── linearEqnI.hxx │ │ └── quadraticEqn │ │ │ ├── quadraticEqn.cxx │ │ │ ├── quadraticEqn.hxx │ │ │ └── quadraticEqnI.hxx │ │ ├── quaternion │ │ ├── quaternion.cxx │ │ ├── quaternion.hxx │ │ └── quaternionI.hxx │ │ ├── ranges │ │ ├── labelRange │ │ │ ├── labelRange.cxx │ │ │ ├── labelRange.hxx │ │ │ ├── labelRangeI.hxx │ │ │ ├── labelRanges.cxx │ │ │ ├── labelRanges.hxx │ │ │ └── labelRangesI.hxx │ │ └── scalarRange │ │ │ ├── scalarRange.cxx │ │ │ ├── scalarRange.hxx │ │ │ ├── scalarRanges.cxx │ │ │ └── scalarRanges.hxx │ │ ├── septernion │ │ ├── septernion.cxx │ │ ├── septernion.hxx │ │ └── septernionI.hxx │ │ ├── spatialVectorAlgebra │ │ ├── CompactSpatialTensor │ │ │ ├── CompactSpatialTensorTemplate.hxx │ │ │ ├── CompactSpatialTensorTemplateI.hxx │ │ │ └── compactSpatialTensor │ │ │ │ ├── compactSpatialTensor.cxx │ │ │ │ └── compactSpatialTensor.hxx │ │ ├── CompactSpatialTensorT │ │ │ ├── CompactSpatialTensorT.hxx │ │ │ └── CompactSpatialTensorTI.hxx │ │ ├── SpatialTensor │ │ │ ├── SpatialTensorTemplate.hxx │ │ │ ├── SpatialTensorTemplateI.hxx │ │ │ └── spatialTensor │ │ │ │ ├── spatialTensor.cxx │ │ │ │ └── spatialTensor.hxx │ │ ├── SpatialVector │ │ │ ├── SpatialVectorTemplate.hxx │ │ │ ├── SpatialVectorTemplateI.hxx │ │ │ └── spatialVector │ │ │ │ ├── spatialVector.cxx │ │ │ │ └── spatialVector.hxx │ │ └── spatialTransform │ │ │ ├── spatialTransform.hxx │ │ │ └── spatialTransformI.hxx │ │ ├── strings │ │ ├── fileName │ │ │ ├── fileName.cxx │ │ │ ├── fileName.hxx │ │ │ ├── fileNameI.hxx │ │ │ └── fileNameIO.cxx │ │ ├── keyType │ │ │ ├── keyType.cxx │ │ │ ├── keyType.hxx │ │ │ └── keyTypeI.hxx │ │ ├── lists │ │ │ ├── fileNameList.hxx │ │ │ ├── hashedWordList.cxx │ │ │ ├── hashedWordList.hxx │ │ │ ├── hashedWordListI.hxx │ │ │ ├── stringList.hxx │ │ │ ├── stringListOps.hxx │ │ │ ├── stringListOpsTemplates.cxx-backup │ │ │ ├── stringListOpsTemplatesI.hxx │ │ │ ├── wordList.hxx │ │ │ ├── wordReList.hxx │ │ │ ├── wordReListMatcher.hxx │ │ │ └── wordReListMatcherI.hxx │ │ ├── string │ │ │ ├── stringIOList.cxx │ │ │ ├── stringIOList.hxx │ │ │ ├── tnbString.cxx │ │ │ ├── tnbString.hxx │ │ │ ├── tnbStringI.hxx │ │ │ └── tnbStringIO.cxx │ │ ├── stringOps │ │ │ ├── stringOps.cxx │ │ │ └── stringOps.hxx │ │ ├── word │ │ │ ├── word.cxx │ │ │ ├── word.hxx │ │ │ ├── wordI.hxx │ │ │ ├── wordIO.cxx │ │ │ ├── wordIOList.cxx │ │ │ └── wordIOList.hxx │ │ └── wordRe │ │ │ ├── wordRe.cxx │ │ │ ├── wordRe.hxx │ │ │ └── wordReI.hxx │ │ ├── subModelBase │ │ ├── subModelBase.cxx │ │ ├── subModelBase.hxx │ │ ├── subModelBaseI.hxx │ │ └── subModelBaseTemplates.cxx-backup │ │ ├── transform │ │ ├── symmTransform.hxx │ │ └── transform.hxx │ │ ├── triad │ │ ├── triad.cxx │ │ ├── triad.hxx │ │ └── triadI.hxx │ │ └── zero │ │ ├── zero.cxx │ │ ├── zero.hxx │ │ └── zeroI.hxx ├── cpp.hint ├── include │ ├── Barycentric2DTemplate.hxx │ ├── Barycentric2DTemplateI.hxx │ ├── BarycentricTemplate.hxx │ ├── BarycentricTemplateI.hxx │ ├── BarycentricTensorTemplate.hxx │ ├── BarycentricTensorTemplateI.hxx │ ├── Base_Module.hxx │ ├── BiIndirectList.hxx │ ├── BiIndirectListI.hxx │ ├── BinSum.hxx │ ├── BinSumI.hxx │ ├── CSV.hxx │ ├── CSVI.hxx │ ├── CalcPatchToPatchWeights_Imp.hxx │ ├── Callback.hxx │ ├── CallbackI.hxx │ ├── CallbackRegistry.hxx │ ├── CallbackRegistryI.hxx │ ├── Circulator.hxx │ ├── CirculatorBase.hxx │ ├── CirculatorI.hxx │ ├── CompactIOField.hxx │ ├── CompactIOFieldI.hxx │ ├── CompactIOList.hxx │ ├── CompactIOListI.hxx │ ├── CompactListList.hxx │ ├── CompactListListI.hxx │ ├── CompactListListIO_Imp.hxx │ ├── CompactListList_Imp.hxx │ ├── CompactSpatialTensorT.hxx │ ├── CompactSpatialTensorTI.hxx │ ├── CompactSpatialTensorTemplate.hxx │ ├── CompactSpatialTensorTemplateI.hxx │ ├── ConstCirculator.hxx │ ├── ConstCirculatorI.hxx │ ├── Constant.hxx │ ├── ConstantI.hxx │ ├── Constant_Imp.hxx │ ├── DICGaussSeidelSmoother.hxx │ ├── DICPreconditioner.hxx │ ├── DICSmoother.hxx │ ├── DILUGaussSeidelSmoother.hxx │ ├── DILUPreconditioner.hxx │ ├── DILUSmoother.hxx │ ├── DLList.hxx │ ├── DLListBase.hxx │ ├── DLListBaseI.hxx │ ├── DLPtrList.hxx │ ├── DiagTensorTemplate.hxx │ ├── DiagTensorTemplateI.hxx │ ├── DiagonalMatrix.hxx │ ├── DiagonalMatrixI.hxx │ ├── DiagonalPreconditionerTemplate.hxx │ ├── DiagonalPreconditionerTemplateI.hxx │ ├── DiagonalSolverTemplate.hxx │ ├── DiagonalSolverTemplateI.hxx │ ├── DictionaryBase.hxx │ ├── DictionaryBaseIO_Imp.hxx │ ├── DictionaryBase_Imp.hxx │ ├── DictionaryTemplate.hxx │ ├── DictionaryTemplateI.hxx │ ├── DimensionedField.hxx │ ├── DimensionedFieldFunctions.hxx │ ├── DimensionedFieldFunctionsM.hxx │ ├── DimensionedFieldFunctions_Imp.hxx │ ├── DimensionedFieldI.hxx │ ├── DimensionedFieldIO_Imp.hxx │ ├── DimensionedFieldReuseFunctions.hxx │ ├── DimensionedField_Imp.hxx │ ├── DimensionedFields.hxx │ ├── DimensionedScalarField.hxx │ ├── DimensionedScalarFieldI.hxx │ ├── DimensionedSphericalTensorField.hxx │ ├── DimensionedSphericalTensorFieldI.hxx │ ├── DimensionedSymmTensorField.hxx │ ├── DimensionedSymmTensorFieldI.hxx │ ├── DimensionedTensorField.hxx │ ├── DimensionedTensorFieldI.hxx │ ├── DistributionTemplate.hxx │ ├── DistributionTemplateI.hxx │ ├── DistributionTemplate_Imp.hxx │ ├── DynamicField.hxx │ ├── DynamicFieldI.hxx │ ├── DynamicField_Imp.hxx │ ├── DynamicID.hxx │ ├── DynamicList.hxx │ ├── DynamicListI.hxx │ ├── DynamicList_Imp.hxx │ ├── EdgeMap.hxx │ ├── FDICPreconditioner.hxx │ ├── FDICSmoother.hxx │ ├── FIFOStack.hxx │ ├── Field.hxx │ ├── FieldField.hxx │ ├── FieldFieldFunctions.hxx │ ├── FieldFieldFunctionsI.hxx │ ├── FieldFieldFunctionsM.hxx │ ├── FieldFieldI.hxx │ ├── FieldFieldReuseFunctions.hxx │ ├── FieldFields.hxx │ ├── FieldFunctions.hxx │ ├── FieldFunctionsI.hxx │ ├── FieldFunctionsM.hxx │ ├── FieldI.hxx │ ├── FieldM.hxx │ ├── FieldReuseFunctions.hxx │ ├── FixedList.hxx │ ├── FixedListI.hxx │ ├── FixedListIO_Imp.hxx │ ├── FixedList_Imp.hxx │ ├── Function1.hxx │ ├── Function1Fwd.hxx │ ├── Function1I.hxx │ ├── Function1New_Imp.hxx │ ├── GAMGAgglomeration.hxx │ ├── GAMGAgglomerationTemplatesI.hxx │ ├── GAMGInterface.hxx │ ├── GAMGInterfaceField.hxx │ ├── GAMGInterfaceTemplatesI.hxx │ ├── GAMGPreconditioner.hxx │ ├── GAMGProcAgglomeration.hxx │ ├── GAMGSolver.hxx │ ├── GaussSeidelSmoother.hxx │ ├── GeoMesh.hxx │ ├── GeometricBoundaryField_Imp.hxx │ ├── GeometricField.hxx │ ├── GeometricFieldFunctions.hxx │ ├── GeometricFieldFunctionsI.hxx │ ├── GeometricFieldFunctionsM.hxx │ ├── GeometricFieldI.hxx │ ├── GeometricFieldReuseFunctions.hxx │ ├── GeometricField_Imp.hxx │ ├── GeometricFields.hxx │ ├── GeometricScalarField.hxx │ ├── GeometricScalarFieldI.hxx │ ├── GeometricSphericalTensorField.hxx │ ├── GeometricSphericalTensorFieldI.hxx │ ├── GeometricSymmTensorField.hxx │ ├── GeometricSymmTensorFieldI.hxx │ ├── GeometricTensorField.hxx │ ├── GeometricTensorFieldI.hxx │ ├── GlobalIOField.hxx │ ├── GlobalIOFieldI.hxx │ ├── GlobalIOList.hxx │ ├── GlobalIOListI.hxx │ ├── Hash.hxx │ ├── HashPtrTable.hxx │ ├── HashPtrTableIO_Imp.hxx │ ├── HashPtrTable_Imp.hxx │ ├── HashSet.hxx │ ├── HashSetI.hxx │ ├── HashTable-cxxI.hxx-backup │ ├── HashTable.hxx │ ├── HashTableI.hxx │ ├── HashTableIO-cxxI.hxx-backup │ ├── HashTableIO_Imp.hxx │ ├── HashTable_Imp.hxx │ ├── Hasher.hxx │ ├── HasherInt.hxx │ ├── Histogram.hxx │ ├── HistogramI.hxx │ ├── IDLList.hxx │ ├── IFstream.hxx │ ├── ILList.hxx │ ├── ILListIO_Imp.hxx │ ├── ILList_Imp.hxx │ ├── INew.hxx │ ├── IOField.hxx │ ├── IOFieldI.hxx │ ├── IOList.hxx │ ├── IOListI.hxx │ ├── IOMap.hxx │ ├── IOMapI.hxx │ ├── IOOutputFilter.hxx │ ├── IOOutputFilterI.hxx │ ├── IOPtrList.hxx │ ├── IOPtrListI.hxx │ ├── IOdictionary.hxx │ ├── IOmanip.hxx │ ├── IOmapDistribute.hxx │ ├── IOobject.hxx │ ├── IOobjectI.hxx │ ├── IOobjectList.hxx │ ├── IOobjectTemplatesI.hxx │ ├── IOstream.hxx │ ├── IOstreams.hxx │ ├── IPstream.hxx │ ├── ISLList.hxx │ ├── ISstream.hxx │ ├── ISstreamI.hxx │ ├── IStringStream.hxx │ ├── ITstream.hxx │ ├── Identity.hxx │ ├── IndirectList.hxx │ ├── IndirectListI.hxx │ ├── InfoProxy.hxx │ ├── Istream.hxx │ ├── Keyed.hxx │ ├── KeyedI.hxx │ ├── LIFOStack.hxx │ ├── LLTMatrix.hxx │ ├── LLTMatrixI.hxx │ ├── LList.hxx │ ├── LListIO_Imp.hxx │ ├── LList_Imp.hxx │ ├── LPtrList.hxx │ ├── LPtrListIO_Imp.hxx │ ├── LPtrList_Imp.hxx │ ├── LUscalarMatrix.hxx │ ├── LUscalarMatrixTemplatesI.hxx │ ├── LduInterfaceFieldPtrsListTemplate.hxx │ ├── LduInterfaceFieldTemplate.hxx │ ├── LduInterfaceFieldTemplateI.hxx │ ├── LduMatrixATmulTemplateI.hxx │ ├── LduMatrixOperationsTemplateI.hxx │ ├── LduMatrixPreconditionerTemplateI.hxx │ ├── LduMatrixSmootherTemplateI.hxx │ ├── LduMatrixSolverTemplateI.hxx │ ├── LduMatrixTemplate.hxx │ ├── LduMatrixTemplateI.hxx │ ├── LduMatrixTemplate_Imp.hxx │ ├── LduMatrixUpdateMatrixInterfacesTemplateI.hxx │ ├── List.hxx │ ├── ListCompactIO.hxx │ ├── ListCompactIOI.hxx │ ├── ListHashTable.hxx │ ├── ListHashTableI.hxx │ ├── ListHashTableIO_Imp.hxx │ ├── ListHashTable_Imp.hxx │ ├── ListI.hxx │ ├── ListIO_Imp.hxx │ ├── ListListOps.hxx │ ├── ListListOpsI.hxx │ ├── ListLoopM.hxx │ ├── ListOps.hxx │ ├── ListOpsI.hxx │ ├── List_Imp.hxx │ ├── MSwindows.hxx │ ├── Map.hxx │ ├── MapGeometricFields.hxx │ ├── MapPointField.hxx │ ├── Matrix.hxx │ ├── MatrixBlock.hxx │ ├── MatrixBlockI.hxx │ ├── MatrixBlock_Imp.hxx │ ├── MatrixI.hxx │ ├── MatrixIO_Imp.hxx │ ├── MatrixSpace.hxx │ ├── MatrixSpaceI.hxx │ ├── Matrix_Imp.hxx │ ├── MeshObject.hxx │ ├── MeshObjectTemplatesI.hxx │ ├── NamedEnum.hxx │ ├── NamedEnumI.hxx │ ├── NoPreconditionerTemplate.hxx │ ├── NoPreconditionerTemplateI.hxx │ ├── OFstream.hxx │ ├── OFstreamCollator.hxx │ ├── OPstream.hxx │ ├── OSHA1stream.hxx │ ├── OSspecific.hxx │ ├── OSstream.hxx │ ├── OSstreamI.hxx │ ├── OStringStream.hxx │ ├── OneConstant.hxx │ ├── OneConstantI.hxx │ ├── OneConstant_Imp.hxx │ ├── Ostream.hxx │ ├── PBiCCCG.hxx │ ├── PBiCCCGI.hxx │ ├── PBiCG.hxx │ ├── PBiCGStab.hxx │ ├── PBiCICG.hxx │ ├── PBiCICGI.hxx │ ├── PCG.hxx │ ├── PCICG.hxx │ ├── PCICGI.hxx │ ├── PackedBoolList.hxx │ ├── PackedBoolListI.hxx │ ├── PackedBoolList_Imp.hxx │ ├── PackedList.hxx │ ├── PackedListI.hxx │ ├── PackedList_Imp.hxx │ ├── Pair.hxx │ ├── ParSortableList.hxx │ ├── ParSortableListI.hxx │ ├── PatchToPatchInterpolate_Imp.hxx │ ├── PatchToPatchInterpolationTemplate.hxx │ ├── PatchToPatchInterpolationTemplateI.hxx │ ├── PatchTools.hxx │ ├── PatchToolsCheckI.hxx │ ├── PatchToolsEdgeOwnerI.hxx │ ├── PatchToolsGatherAndMergeI.hxx │ ├── PatchToolsMatchI.hxx │ ├── PatchToolsNormalsI.hxx │ ├── PatchToolsSearchI.hxx │ ├── PatchToolsSortEdgesI.hxx │ ├── PatchToolsSortPointsI.hxx │ ├── PointHitTemplate.hxx │ ├── PointIndexHitTemplate.hxx │ ├── Polynomial.hxx │ ├── PolynomialEntry.hxx │ ├── PolynomialEntryI.hxx │ ├── PolynomialIO_Imp.hxx │ ├── Polynomial_Imp.hxx │ ├── PrimitivePatchAddressingI.hxx │ ├── PrimitivePatchBdryPointsI.hxx │ ├── PrimitivePatchCheckI.hxx │ ├── PrimitivePatchClearI.hxx │ ├── PrimitivePatchEdgeLoopsI.hxx │ ├── PrimitivePatchInterpolationTemplate.hxx │ ├── PrimitivePatchInterpolationTemplateI.hxx │ ├── PrimitivePatchLocalPointOrderI.hxx │ ├── PrimitivePatchMeshDataI.hxx │ ├── PrimitivePatchMeshEdgesI.hxx │ ├── PrimitivePatchPointAddressingI.hxx │ ├── PrimitivePatchProjectPointsI.hxx │ ├── PrimitivePatchTemplate.hxx │ ├── PrimitivePatchTemplateI.hxx │ ├── ProcessorTopologyTemplate.hxx │ ├── ProcessorTopologyTemplateI.hxx │ ├── Pstream.hxx │ ├── PstreamBuffers.hxx │ ├── PstreamCombineReduceOps.hxx │ ├── PstreamGlobals.hxx │ ├── PstreamHelper.hxx │ ├── PstreamHelperI.hxx │ ├── PstreamReduceOps.hxx │ ├── PtrDictionary.hxx │ ├── PtrDictionaryI.hxx │ ├── PtrList.hxx │ ├── PtrListDictionary.hxx │ ├── PtrListDictionaryI.hxx │ ├── PtrListI.hxx │ ├── PtrListIO_Imp.hxx │ ├── PtrList_Imp.hxx │ ├── PtrMap.hxx │ ├── QRMatrix.hxx │ ├── QRMatrixI.hxx │ ├── QRMatrix_Imp.hxx │ ├── Random.hxx │ ├── RandomI.hxx │ ├── ReadFieldsTemplates.hxx │ ├── ReadFieldsTemplatesI.hxx │ ├── ReadHex.hxx │ ├── ReadHexI.hxx │ ├── RectangularMatrix.hxx │ ├── RectangularMatrixI.hxx │ ├── ResidualsTemplate.hxx │ ├── ResidualsTemplateI.hxx │ ├── Roots.hxx │ ├── RootsI.hxx │ ├── RowVector.hxx │ ├── RowVectorI.hxx │ ├── SHA1.hxx │ ├── SHA1Digest.hxx │ ├── SHA1I.hxx │ ├── SLList.hxx │ ├── SLListBase.hxx │ ├── SLListBaseI.hxx │ ├── SLPtrList.hxx │ ├── SVD.hxx │ ├── SVDI.hxx │ ├── Scale.hxx │ ├── ScaleI.hxx │ ├── Scale_Imp.hxx │ ├── Sine.hxx │ ├── SineI.hxx │ ├── Sine_Imp.hxx │ ├── SlicedGeometricField.hxx │ ├── SlicedGeometricFieldI.hxx │ ├── SmoothSolverTemplate.hxx │ ├── SmoothSolverTemplateI.hxx │ ├── SolverPerformanceTemplate.hxx │ ├── SolverPerformanceTemplateI.hxx │ ├── SortableList.hxx │ ├── SortableListI.hxx │ ├── SpatialTensorTemplate.hxx │ ├── SpatialTensorTemplateI.hxx │ ├── SpatialVectorTemplate.hxx │ ├── SpatialVectorTemplateI.hxx │ ├── SphericalTensor2DTemplate.hxx │ ├── SphericalTensor2DTemplateI.hxx │ ├── SphericalTensorTemplate.hxx │ ├── SphericalTensorTemplateI.hxx │ ├── Square.hxx │ ├── SquareI.hxx │ ├── SquareMatrix.hxx │ ├── SquareMatrixI.hxx │ ├── SquareMatrix_Imp.hxx │ ├── Square_Imp.hxx │ ├── SubField.hxx │ ├── SubFieldI.hxx │ ├── SubList.hxx │ ├── SubListI.hxx │ ├── Swap.hxx │ ├── Switch.hxx │ ├── SymmTensor2DTemplate.hxx │ ├── SymmTensor2DTemplateI.hxx │ ├── SymmTensorTemplate.hxx │ ├── SymmTensorTemplateI.hxx │ ├── SymmetricSquareMatrix.hxx │ ├── SymmetricSquareMatrixI.hxx │ ├── SymmetricSquareMatrix_Imp.hxx │ ├── TDILUPreconditioner.hxx │ ├── TDILUPreconditionerI.hxx │ ├── TGaussSeidelSmoother.hxx │ ├── TGaussSeidelSmootherI.hxx │ ├── Table.hxx │ ├── TableBase.hxx │ ├── TableBaseI.hxx │ ├── TableFile.hxx │ ├── TableFileI.hxx │ ├── TableI.hxx │ ├── Tensor2DTemplate.hxx │ ├── Tensor2DTemplateI.hxx │ ├── TensorTemplate.hxx │ ├── TensorTemplateI.hxx │ ├── Time.hxx │ ├── TimeFunction1.hxx │ ├── TimeFunction1I.hxx │ ├── TimePaths.hxx │ ├── TimeState.hxx │ ├── TimeStateI.hxx │ ├── Tuple2.hxx │ ├── UDictionary.hxx │ ├── UDictionaryI.hxx │ ├── UIDLList.hxx │ ├── UILList.hxx │ ├── UILListIO_Imp.hxx │ ├── UILList_Imp.hxx │ ├── UIPstream.hxx │ ├── UIndirectList.hxx │ ├── UIndirectListI.hxx │ ├── UIndirectListIO_Imp.hxx │ ├── UList.hxx │ ├── UListI.hxx │ ├── UListIO_Imp.hxx │ ├── UList_Imp.hxx │ ├── UOPstream.hxx │ ├── UPstream.hxx │ ├── UPtrDictionary.hxx │ ├── UPtrDictionaryI.hxx │ ├── UPtrList.hxx │ ├── UPtrListI.hxx │ ├── UPtrListIO_Imp.hxx │ ├── UPtrList_Imp.hxx │ ├── UautoPtr.hxx │ ├── UautoPtrI.hxx │ ├── UniformDimensionedField.hxx │ ├── UniformDimensionedFieldI.hxx │ ├── UniformField.hxx │ ├── UniformFieldI.hxx │ ├── UniformTemplate.hxx │ ├── UniformTemplateI.hxx │ ├── Vector2DTemplate.hxx │ ├── Vector2DTemplateI.hxx │ ├── VectorSpace.hxx │ ├── VectorSpaceI.hxx │ ├── VectorSpaceOps.hxx │ ├── VectorSpace_Imp.hxx │ ├── VectorTemplate.hxx │ ├── VectorTemplateI.hxx │ ├── ZeroConstant.hxx │ ├── ZeroConstantI.hxx │ ├── ZeroConstant_Imp.hxx │ ├── ZoneIDs.hxx │ ├── ZoneMesh.hxx │ ├── ZoneMeshI.hxx │ ├── addToMemberFunctionSelectionTable.hxx │ ├── addToRunTimeSelectionTable.hxx │ ├── algebraicPairGAMGAgglomeration.hxx │ ├── allReduce.hxx │ ├── allReduceI.hxx │ ├── argList.hxx │ ├── argListI.hxx │ ├── atomicConstants.hxx │ ├── autoPtr.hxx │ ├── autoPtrI.hxx │ ├── bandCompression.hxx │ ├── barycentric.hxx │ ├── barycentric2D.hxx │ ├── barycentricTensor.hxx │ ├── baseIOdictionary.hxx │ ├── basicSymmetryPointPatchField.hxx │ ├── basicSymmetryPointPatchFieldI.hxx │ ├── bool.hxx │ ├── boolList.hxx │ ├── boundBox.hxx │ ├── boundBoxI.hxx │ ├── boundBoxTemplatesI.hxx │ ├── calcEntry.hxx │ ├── calculatedPointPatchField.hxx │ ├── calculatedPointPatchFieldI.hxx │ ├── calculatedPointPatchFields.hxx │ ├── cell.hxx │ ├── cellI.hxx │ ├── cellIOList.hxx │ ├── cellList.hxx │ ├── cellMapper.hxx │ ├── cellMatcher.hxx │ ├── cellMatcherI.hxx │ ├── cellModel.hxx │ ├── cellModelI.hxx │ ├── cellModeller.hxx │ ├── cellShape.hxx │ ├── cellShapeI.hxx │ ├── cellShapeIOList.hxx │ ├── cellShapeList.hxx │ ├── cellZone.hxx │ ├── cellZoneMesh.hxx │ ├── cellZoneMeshFwd.hxx │ ├── char.hxx │ ├── className.hxx │ ├── clock.hxx │ ├── clockTime.hxx │ ├── cloud.hxx │ ├── codeStream.hxx │ ├── codedBase.hxx │ ├── codedFixedValuePointPatchField.hxx │ ├── codedFixedValuePointPatchFieldI.hxx │ ├── codedFixedValuePointPatchFields.hxx │ ├── codedFixedValuePointPatchFieldsFwd.hxx │ ├── collatedFileOperation.hxx │ ├── combineGatherScatterI.hxx │ ├── commSchedule.hxx │ ├── compactSpatialTensor.hxx │ ├── complex.hxx │ ├── complexFields.hxx │ ├── complexI.hxx │ ├── complexVector.hxx │ ├── complexVectorI.hxx │ ├── constants.hxx │ ├── contiguous.hxx │ ├── coupleGroupIdentifier.hxx │ ├── coupleGroupIdentifierI.hxx │ ├── coupledFacePointPatch.hxx │ ├── coupledPointPatch.hxx │ ├── coupledPointPatchField.hxx │ ├── coupledPointPatchFieldI.hxx │ ├── coupledPointPatchFields.hxx │ ├── coupledPolyPatch.hxx │ ├── cpuTime.hxx │ ├── csvTableReader.hxx │ ├── csvTableReaderI.hxx │ ├── cubicEqn.hxx │ ├── cubicEqnI.hxx │ ├── curve.hxx │ ├── curveTools.hxx │ ├── cut.hxx │ ├── cutI.hxx │ ├── cutTemplatesI.hxx │ ├── cyclicGAMGInterface.hxx │ ├── cyclicGAMGInterfaceField.hxx │ ├── cyclicLduInterface.hxx │ ├── cyclicLduInterfaceField.hxx │ ├── cyclicPointPatch.hxx │ ├── cyclicPointPatchField.hxx │ ├── cyclicPointPatchFieldI.hxx │ ├── cyclicPointPatchFields.hxx │ ├── cyclicPolyPatch.hxx │ ├── cyclicSlipPointPatch.hxx │ ├── cyclicSlipPointPatchField.hxx │ ├── cyclicSlipPointPatchFieldI.hxx │ ├── cyclicSlipPointPatchFields.hxx │ ├── cyclicSlipPolyPatch.hxx │ ├── data.hxx │ ├── decomposedBlockData.hxx │ ├── deelx.hxx │ ├── defineDebugSwitch.hxx │ ├── degenerateMatcher.hxx │ ├── demandDrivenData.hxx │ ├── demandDrivenEntry.hxx │ ├── demandDrivenEntryI.hxx │ ├── demandDrivenEntry_Imp.hxx │ ├── diagTensor.hxx │ ├── diagTensorField.hxx │ ├── diagTensorFieldIOField.hxx │ ├── diagTensorIOField.hxx │ ├── diagonalPreconditioner.hxx │ ├── diagonalSolver.hxx │ ├── dictionary.hxx │ ├── dictionaryEntry.hxx │ ├── dictionaryListEntry.hxx │ ├── dictionaryTemplatesI.hxx │ ├── dimensionSet.hxx │ ├── dimensionSets.hxx │ ├── dimensionedConstants.hxx │ ├── dimensionedScalar.hxx │ ├── dimensionedScalarFwd.hxx │ ├── dimensionedSphericalTensor.hxx │ ├── dimensionedSymmTensor.hxx │ ├── dimensionedTensor.hxx │ ├── dimensionedType.hxx │ ├── dimensionedTypeI.hxx │ ├── dimensionedTypes.hxx │ ├── dimensionedVector.hxx │ ├── directFieldMapper.hxx │ ├── directFieldMapperI.hxx │ ├── directPointPatchFieldMapper.hxx │ ├── direction.hxx │ ├── dlLibraryTable.hxx │ ├── dlLibraryTableI.hxx │ ├── doubleFloat.hxx │ ├── doubleScalar.hxx │ ├── dummyAgglomeration.hxx │ ├── dummyISstream.hxx │ ├── dummyIstream.hxx │ ├── dummyTransform.hxx │ ├── dynamicCode.hxx │ ├── dynamicCodeContext.hxx │ ├── dynamicIndexedOctree.hxx │ ├── dynamicIndexedOctreeI.hxx │ ├── dynamicTreeDataPoint.hxx │ ├── eagerGAMGProcAgglomeration.hxx │ ├── edge.hxx │ ├── edgeI.hxx │ ├── edgeIOList.hxx │ ├── edgeList.hxx │ ├── electromagneticConstants.hxx │ ├── emptyPointPatch.hxx │ ├── emptyPointPatchField.hxx │ ├── emptyPointPatchFieldI.hxx │ ├── emptyPointPatchFields.hxx │ ├── emptyPolyPatch.hxx │ ├── entry.hxx │ ├── error.hxx │ ├── errorManip.hxx │ ├── etcFiles.hxx │ ├── exchangeI.hxx │ ├── face.hxx │ ├── faceI.hxx │ ├── faceIOList.hxx │ ├── faceList.hxx │ ├── faceListFwd.hxx │ ├── faceMapper.hxx │ ├── facePointPatch.hxx │ ├── faceTemplatesI.hxx │ ├── faceZone.hxx │ ├── faceZoneMesh.hxx │ ├── faceZoneMeshFwd.hxx │ ├── fieldMapper.hxx │ ├── fieldMapperI.hxx │ ├── fieldTypes.hxx │ ├── fileMonitor.hxx │ ├── fileName.hxx │ ├── fileNameI.hxx │ ├── fileNameList.hxx │ ├── fileOperation.hxx │ ├── fileOperationInitialise.hxx │ ├── fileStat.hxx │ ├── fixedNormalSlipPointPatchField.hxx │ ├── fixedNormalSlipPointPatchFieldI.hxx │ ├── fixedNormalSlipPointPatchFields.hxx │ ├── fixedValuePointPatchField.hxx │ ├── fixedValuePointPatchFieldI.hxx │ ├── fixedValuePointPatchFields.hxx │ ├── flipOp.hxx │ ├── floatScalar.hxx │ ├── floatTensor.hxx │ ├── floatVector.hxx │ ├── functionEntry.hxx │ ├── functionObject.hxx │ ├── functionObjectList.hxx │ ├── fundamentalConstants.hxx │ ├── gatherScatterI.hxx │ ├── gatherScatterListI.hxx │ ├── generalFieldMapper.hxx │ ├── generalFieldMapperI.hxx │ ├── genericPointPatch.hxx │ ├── genericPolyPatch.hxx │ ├── geometricOneField.hxx │ ├── geometricOneFieldI.hxx │ ├── geometricZeroField.hxx │ ├── geometricZeroFieldI.hxx │ ├── globalIOLists.hxx │ ├── globalIndex.hxx │ ├── globalIndexAndTransform.hxx │ ├── globalIndexAndTransformI.hxx │ ├── globalIndexI.hxx │ ├── globalIndexTemplatesI.hxx │ ├── globalMeshData.hxx │ ├── globalMeshDataTemplatesI.hxx │ ├── globalPoints.hxx │ ├── gnuplotGraph.hxx │ ├── graph.hxx │ ├── gzstream.hxx │ ├── halfCosineRamp.hxx │ ├── halfCosineRampI.hxx │ ├── hashedWordList.hxx │ ├── hashedWordListI.hxx │ ├── hexMatcher.hxx │ ├── hostCollatedFileOperation.hxx │ ├── ifEntry.hxx │ ├── ifeqEntry.hxx │ ├── includeAllModules.hxx │ ├── includeEntry.hxx │ ├── includeEtcEntry.hxx │ ├── includeFuncEntry.hxx │ ├── includeIfPresentEntry.hxx │ ├── includeModule.hxx │ ├── indexedOctree.hxx │ ├── indexedOctreeI.hxx │ ├── indirectCellList.hxx │ ├── indirectFaceList.hxx │ ├── indirectPointList.hxx │ ├── indirectPrimitivePatch.hxx │ ├── inputModeEntry.hxx │ ├── instant.hxx │ ├── instantList.hxx │ ├── int.hxx │ ├── int32.hxx │ ├── int64.hxx │ ├── interpolatePointToCell.hxx │ ├── interpolatePointToCellI.hxx │ ├── interpolateSplineXY.hxx │ ├── interpolateSplineXYI.hxx │ ├── interpolateXY.hxx │ ├── interpolateXYI.hxx │ ├── interpolation2DTable.hxx │ ├── interpolation2DTableI.hxx │ ├── interpolationLookUpTable.hxx │ ├── interpolationLookUpTableI.hxx │ ├── interpolationLookUpTable_Imp.hxx │ ├── interpolationTable.hxx │ ├── interpolationTableI.hxx │ ├── interpolationWeights.hxx │ ├── interpolationWeightsI.hxx │ ├── intersection.hxx │ ├── jobInfo.hxx │ ├── jplotGraph.hxx │ ├── keyType.hxx │ ├── keyTypeI.hxx │ ├── label.hxx │ ├── labelBits.hxx │ ├── labelField.hxx │ ├── labelFieldIOField.hxx │ ├── labelIOField.hxx │ ├── labelIOList.hxx │ ├── labelList.hxx │ ├── labelListIOList.hxx │ ├── labelPair.hxx │ ├── labelRange.hxx │ ├── labelRangeI.hxx │ ├── labelRanges.hxx │ ├── labelRangesI.hxx │ ├── labelSpecific.hxx │ ├── labelSphericalTensor.hxx │ ├── labelSymmTensor.hxx │ ├── labelTensor.hxx │ ├── labelVector.hxx │ ├── lduAddressing.hxx │ ├── lduInterface.hxx │ ├── lduInterfaceField.hxx │ ├── lduInterfaceFieldPtrsList.hxx │ ├── lduInterfacePtrsList.hxx │ ├── lduMatrix.hxx │ ├── lduMatrixTemplates_Imp.hxx │ ├── lduMesh.hxx │ ├── lduMeshTemplatesI.hxx │ ├── lduPrimitiveMesh.hxx │ ├── lduPrimitiveMeshTemplatesI.hxx │ ├── lduSchedule.hxx │ ├── line.hxx │ ├── lineI.hxx │ ├── linePoint2DRef.hxx │ ├── linePointRef.hxx │ ├── linearEqn.hxx │ ├── linearEqnI.hxx │ ├── linearInterpolationWeights.hxx │ ├── linearRamp.hxx │ ├── linearRampI.hxx │ ├── localIOdictionary.hxx │ ├── logFiles.hxx │ ├── longDoubleScalar.hxx │ ├── macros.hxx │ ├── manualGAMGProcAgglomeration.hxx │ ├── mapAddedPolyMesh.hxx │ ├── mapClouds.hxx │ ├── mapDistribute.hxx │ ├── mapDistributeBase.hxx │ ├── mapDistributeBaseTemplatesI.hxx │ ├── mapDistributeLagrangian.hxx │ ├── mapDistributePolyMesh.hxx │ ├── mapDistributeTemplatesI.hxx │ ├── mapPatchChange.hxx │ ├── mapPolyMesh.hxx │ ├── mapSubsetMesh.hxx │ ├── masterCoarsestGAMGProcAgglomeration.hxx │ ├── masterOFstream.hxx │ ├── masterUncollatedFileOperation.hxx │ ├── masterUncollatedFileOperationI.hxx │ ├── matchPoints.hxx │ ├── mathematicalConstants.hxx │ ├── memInfo.hxx │ ├── memberFunctionSelectionTables.hxx │ ├── mergePoints.hxx │ ├── mergePointsI.hxx │ ├── messageStream.hxx │ ├── morphFieldMapper.hxx │ ├── negEntry.hxx │ ├── nil.hxx │ ├── noPreconditioner.hxx │ ├── nonBlockingGaussSeidelSmoother.hxx │ ├── noneGAMGProcAgglomeration.hxx │ ├── nonuniformTransformCyclicPointPatch.hxx │ ├── nonuniformTransformCyclicPointPatchField.hxx │ ├── nonuniformTransformCyclicPointPatchFieldI.hxx │ ├── nonuniformTransformCyclicPointPatchFields.hxx │ ├── nonuniformTransformCyclicPolyPatch.hxx │ ├── nullObject.hxx │ ├── nullObjectI.hxx │ ├── objectHit.hxx │ ├── objectMap.hxx │ ├── objectMapI.hxx │ ├── objectRegistry.hxx │ ├── objectRegistryI.hxx │ ├── oldCyclicPolyPatch.hxx │ ├── one.hxx │ ├── oneField.hxx │ ├── oneFieldField.hxx │ ├── oneFieldFieldI.hxx │ ├── oneFieldI.hxx │ ├── oneI.hxx │ ├── openFoamTableReader.hxx │ ├── openFoamTableReaderI.hxx │ ├── oppositeFace.hxx │ ├── ops.hxx │ ├── pTraits.hxx │ ├── pairGAMGAgglomeration.hxx │ ├── parRun.hxx │ ├── patchIdentifier.hxx │ ├── patchToPatchInterpolation.hxx │ ├── patchZones.hxx │ ├── physicoChemicalConstants.hxx │ ├── plane.hxx │ ├── point.hxx │ ├── point2D.hxx │ ├── point2DField.hxx │ ├── point2DFieldFwd.hxx │ ├── point2DHit.hxx │ ├── pointBoundaryMesh.hxx │ ├── pointBoundaryMeshMapper.hxx │ ├── pointConstraint.hxx │ ├── pointConstraintI.hxx │ ├── pointField.hxx │ ├── pointFieldFwd.hxx │ ├── pointFields.hxx │ ├── pointFieldsFwd.hxx │ ├── pointHit.hxx │ ├── pointHitSort.hxx │ ├── pointIOField.hxx │ ├── pointIndexHit.hxx │ ├── pointIndexHitIOList.hxx │ ├── pointIndexHitList.hxx │ ├── pointMapper.hxx │ ├── pointMesh.hxx │ ├── pointMeshMapper.hxx │ ├── pointPatch.hxx │ ├── pointPatchField.hxx │ ├── pointPatchFieldFunctions.hxx │ ├── pointPatchFieldI.hxx │ ├── pointPatchFieldMapper.hxx │ ├── pointPatchFieldMapperPatchRef.hxx │ ├── pointPatchFieldNew_Imp.hxx │ ├── pointPatchFields.hxx │ ├── pointPatchFieldsFwd.hxx │ ├── pointPatchList.hxx │ ├── pointPatchMapper.hxx │ ├── pointZone.hxx │ ├── pointZoneMesh.hxx │ ├── pointZoneMeshFwd.hxx │ ├── polyBoundaryMesh.hxx │ ├── polyBoundaryMeshEntries.hxx │ ├── polyBoundaryMeshTemplatesI.hxx │ ├── polyMesh.hxx │ ├── polyMeshTetDecomposition.hxx │ ├── polyMeshTools.hxx │ ├── polyPatch.hxx │ ├── polyPatchID.hxx │ ├── polyPatchList.hxx │ ├── prefixOSstream.hxx │ ├── preservePatchTypes.hxx │ ├── primitiveEntry.hxx │ ├── primitiveEntryTemplatesI.hxx │ ├── primitiveFacePatch.hxx │ ├── primitiveFaceZone.hxx │ ├── primitiveFields.hxx │ ├── primitiveFieldsFwd.hxx │ ├── primitiveMesh.hxx │ ├── primitiveMeshI.hxx │ ├── primitiveMeshTools.hxx │ ├── primitivePatch.hxx │ ├── primitivePatchInterpolation.hxx │ ├── prismMatcher.hxx │ ├── procFacesGAMGProcAgglomeration.hxx │ ├── procLduInterface.hxx │ ├── procLduMatrix.hxx │ ├── processorCyclicGAMGInterface.hxx │ ├── processorCyclicGAMGInterfaceField.hxx │ ├── processorCyclicPointPatch.hxx │ ├── processorCyclicPointPatchField.hxx │ ├── processorCyclicPointPatchFieldI.hxx │ ├── processorCyclicPointPatchFields.hxx │ ├── processorCyclicPolyPatch.hxx │ ├── processorGAMGInterface.hxx │ ├── processorGAMGInterfaceField.hxx │ ├── processorLduInterface.hxx │ ├── processorLduInterfaceField.hxx │ ├── processorLduInterfaceTemplatesI.hxx │ ├── processorPointPatch.hxx │ ├── processorPointPatchField.hxx │ ├── processorPointPatchFieldI.hxx │ ├── processorPointPatchFields.hxx │ ├── processorPolyPatch.hxx │ ├── processorTopology.hxx │ ├── products.hxx │ ├── pyrMatcher.hxx │ ├── pyramid.hxx │ ├── pyramidI.hxx │ ├── pyramidPointFaceRef.hxx │ ├── quadraticEqn.hxx │ ├── quadraticEqnI.hxx │ ├── quadraticRamp.hxx │ ├── quadraticRampI.hxx │ ├── quarterCosineRamp.hxx │ ├── quarterCosineRampI.hxx │ ├── quarterSineRamp.hxx │ ├── quarterSineRampI.hxx │ ├── quaternion.hxx │ ├── quaternionField.hxx │ ├── quaternionI.hxx │ ├── quaternionIOField.hxx │ ├── ramp.hxx │ ├── rampI.hxx │ ├── rawGraph.hxx │ ├── readHexLabel.hxx │ ├── refCount.hxx │ ├── regExp.hxx │ ├── regIOobject.hxx │ ├── regIOobjectI.hxx │ ├── regionFunctionObject.hxx │ ├── regionFunctionObjectI.hxx │ ├── registerSwitch.hxx │ ├── removeEntry.hxx │ ├── runTimeSelectionTables.hxx │ ├── scalar.hxx │ ├── scalarField.hxx │ ├── scalarFieldField.hxx │ ├── scalarFieldFieldI.hxx │ ├── scalarFieldIOField.hxx │ ├── scalarIOField.hxx │ ├── scalarIOList.hxx │ ├── scalarList.hxx │ ├── scalarListIOList.hxx │ ├── scalarMatrices.hxx │ ├── scalarMatricesTemplatesI.hxx │ ├── scalarRange.hxx │ ├── scalarRanges.hxx │ ├── septernion.hxx │ ├── septernionI.hxx │ ├── setSizeFieldMapper.hxx │ ├── setSizeFieldMapperI.hxx │ ├── sigFpe.hxx │ ├── sigInt.hxx │ ├── sigQuit.hxx │ ├── sigSegv.hxx │ ├── sigStopAtWriteNow.hxx │ ├── sigWriteNow.hxx │ ├── simpleMatrix.hxx │ ├── simpleMatrixI.hxx │ ├── simpleObjectRegistry.hxx │ ├── simpleRegIOobject.hxx │ ├── slipPointPatchField.hxx │ ├── slipPointPatchFieldI.hxx │ ├── slipPointPatchFields.hxx │ ├── smoothSolver.hxx │ ├── solution.hxx │ ├── solutionTemplatesI.hxx │ ├── solverPerformance.hxx │ ├── spatialTensor.hxx │ ├── spatialTransform.hxx │ ├── spatialTransformI.hxx │ ├── spatialVector.hxx │ ├── sphericalTensor.hxx │ ├── sphericalTensor2D.hxx │ ├── sphericalTensorField.hxx │ ├── sphericalTensorFieldField.hxx │ ├── sphericalTensorFieldFieldI.hxx │ ├── sphericalTensorFieldIOField.hxx │ ├── sphericalTensorIOField.hxx │ ├── sphericalTensorList.hxx │ ├── splineInterpolationWeights.hxx │ ├── stringIOList.hxx │ ├── stringList.hxx │ ├── stringListOps.hxx │ ├── stringListOpsTemplatesI.hxx │ ├── stringOps.hxx │ ├── subCycle.hxx │ ├── subCycleTime.hxx │ ├── subModelBase.hxx │ ├── subModelBaseI.hxx │ ├── symGaussSeidelSmoother.hxx │ ├── symmTensor.hxx │ ├── symmTensor2D.hxx │ ├── symmTensorField.hxx │ ├── symmTensorFieldField.hxx │ ├── symmTensorFieldFieldI.hxx │ ├── symmTensorFieldIOField.hxx │ ├── symmTensorIOField.hxx │ ├── symmTensorList.hxx │ ├── symmTransform.hxx │ ├── symmTransformField.hxx │ ├── symmTransformFieldI.hxx │ ├── symmetryPlanePointPatch.hxx │ ├── symmetryPlanePointPatchField.hxx │ ├── symmetryPlanePointPatchFieldI.hxx │ ├── symmetryPlanePointPatchFields.hxx │ ├── symmetryPlanePolyPatch.hxx │ ├── symmetryPointPatch.hxx │ ├── symmetryPointPatchField.hxx │ ├── symmetryPointPatchFieldI.hxx │ ├── symmetryPointPatchFields.hxx │ ├── symmetryPolyPatch.hxx │ ├── syncTools.hxx │ ├── syncToolsI.hxx │ ├── tableReader.hxx │ ├── tableReaderI.hxx │ ├── tableReaders.hxx │ ├── tensor.hxx │ ├── tensor2D.hxx │ ├── tensorField.hxx │ ├── tensorFieldField.hxx │ ├── tensorFieldFieldI.hxx │ ├── tensorFieldIOField.hxx │ ├── tensorIOField.hxx │ ├── tensorList.hxx │ ├── tetCell.hxx │ ├── tetCellI.hxx │ ├── tetCellList.hxx │ ├── tetIndices.hxx │ ├── tetIndicesI.hxx │ ├── tetMatcher.hxx │ ├── tetPointRef.hxx │ ├── tetWedgeMatcher.hxx │ ├── tetrahedron.hxx │ ├── tetrahedronI.hxx │ ├── tetrahedron_Imp.hxx │ ├── thermodynamicConstants.hxx │ ├── threadedCollatedOFstream.hxx │ ├── timeControl.hxx │ ├── timeControlFunctionObject.hxx │ ├── timeControlFunctionObjectI.hxx │ ├── timeControlI.hxx │ ├── timeSelector.hxx │ ├── timeVaryingUniformFixedValuePointPatchField.hxx │ ├── timeVaryingUniformFixedValuePointPatchFieldI.hxx │ ├── timeVaryingUniformFixedValuePointPatchFields.hxx │ ├── timer.hxx │ ├── tmp.hxx │ ├── tmpI.hxx │ ├── tmpNrc.hxx │ ├── tmpNrcI.hxx │ ├── tnbDebug.hxx │ ├── tnbString.hxx │ ├── tnbStringI.hxx │ ├── tnbVersion.hxx │ ├── token.hxx │ ├── tokenI.hxx │ ├── tokenList.hxx │ ├── token_Imp.hxx │ ├── tolerances.hxx │ ├── transform.hxx │ ├── transformField.hxx │ ├── transformFieldField.hxx │ ├── transformFieldFieldI.hxx │ ├── transformFieldI.hxx │ ├── transformGeometricField.hxx │ ├── transformGeometricFieldI.hxx │ ├── transformList.hxx │ ├── transformListI.hxx │ ├── treeBoundBox.hxx │ ├── treeBoundBoxI.hxx │ ├── treeBoundBoxList.hxx │ ├── treeBoundBoxTemplatesI.hxx │ ├── treeDataCell.hxx │ ├── triFace.hxx │ ├── triFaceI.hxx │ ├── triFaceList.hxx │ ├── triFaceTemplatesI.hxx │ ├── triPointRef.hxx │ ├── triad.hxx │ ├── triadField.hxx │ ├── triadI.hxx │ ├── triadIOField.hxx │ ├── triangle.hxx │ ├── triangleI.hxx │ ├── typeInfo.hxx │ ├── uLabel.hxx │ ├── uindirectPrimitivePatch.hxx │ ├── uint.hxx │ ├── uint32.hxx │ ├── uint64.hxx │ ├── uncollatedFileOperation.hxx │ ├── undefFieldFunctionsM.hxx │ ├── uniformDimensionedFields.hxx │ ├── uniformFixedValuePointPatchField.hxx │ ├── uniformFixedValuePointPatchFieldI.hxx │ ├── uniformFixedValuePointPatchFields.hxx │ ├── uniformInterpolate.hxx │ ├── uniformInterpolateI.hxx │ ├── uniformInterpolationTable.hxx │ ├── uniformInterpolationTableI.hxx │ ├── uniformInterpolationTable_Imp.hxx │ ├── unitConversion.hxx │ ├── universalConstants.hxx │ ├── unthreadedInitialise.hxx │ ├── unwatchedIOdictionary.hxx │ ├── valuePointPatchField.hxx │ ├── valuePointPatchFieldI.hxx │ ├── valuePointPatchFields.hxx │ ├── vector.hxx │ ├── vector2D.hxx │ ├── vector2DField.hxx │ ├── vector2DFieldFwd.hxx │ ├── vector2DFieldIOField.hxx │ ├── vector2DIOField.hxx │ ├── vectorField.hxx │ ├── vectorFieldIOField.hxx │ ├── vectorIOField.hxx │ ├── vectorIOList.hxx │ ├── vectorList.hxx │ ├── vectorListIOList.hxx │ ├── vectorTensorTransform.hxx │ ├── vectorTensorTransformI.hxx │ ├── vectorTensorTransformTemplatesI.hxx │ ├── volumeType.hxx │ ├── walkPatch.hxx │ ├── wallPointPatch.hxx │ ├── wallPolyPatch.hxx │ ├── wchar.hxx │ ├── wedgeMatcher.hxx │ ├── wedgePointPatch.hxx │ ├── wedgePointPatchField.hxx │ ├── wedgePointPatchFieldI.hxx │ ├── wedgePointPatchFields.hxx │ ├── wedgePolyPatch.hxx │ ├── word.hxx │ ├── wordI.hxx │ ├── wordIOList.hxx │ ├── wordList.hxx │ ├── wordRe.hxx │ ├── wordReI.hxx │ ├── wordReList.hxx │ ├── wordReListMatcher.hxx │ ├── wordReListMatcherI.hxx │ ├── writeFile.hxx │ ├── writeFileI.hxx │ ├── writeLocalObjects.hxx │ ├── writeObjectsBase.hxx │ ├── xmgrGraph.hxx │ ├── zero.hxx │ ├── zeroField.hxx │ ├── zeroFieldField.hxx │ ├── zeroFieldFieldI.hxx │ ├── zeroFieldI.hxx │ ├── zeroGradientPointPatchField.hxx │ ├── zeroGradientPointPatchFieldI.hxx │ ├── zeroGradientPointPatchFields.hxx │ ├── zeroI.hxx │ └── zone.hxx ├── main.cxx └── test1.txt ├── TnbCombustionModels ├── TnbCombustionModels.vcxproj ├── TnbCombustionModels.vcxproj.filters ├── TnbLib │ └── combustionModels │ │ ├── CombustionModel │ │ ├── ChemistryCombustion │ │ │ ├── ChemistryCombustionTemplate.cxx-backup │ │ │ ├── ChemistryCombustionTemplate.hxx │ │ │ └── ChemistryCombustionTemplateI.hxx │ │ ├── CombustionModel │ │ │ ├── CombustionModelTemplate.cxx-backup │ │ │ ├── CombustionModelTemplate.hxx │ │ │ ├── CombustionModelTemplateI.hxx │ │ │ └── CombustionModels.cxx │ │ ├── ThermoCombustion │ │ │ ├── ThermoCombustionTemplate.cxx-backup │ │ │ ├── ThermoCombustionTemplate.hxx │ │ │ └── ThermoCombustionTemplateI.hxx │ │ ├── combustionModel.cxx │ │ ├── combustionModel.hxx │ │ ├── combustionModelI.hxx │ │ ├── combustionModelTemplatesI.hxx │ │ └── makeCombustionTypes.hxx │ │ ├── EDC │ │ ├── EDC.cxx-backup │ │ ├── EDC.hxx │ │ ├── EDCI.hxx │ │ └── EDCs.cxx │ │ ├── FSD │ │ ├── FSD.cxx-backup │ │ ├── FSD.hxx │ │ ├── FSDI.hxx │ │ ├── FSDs.cxx │ │ └── reactionRateFlameAreaModels │ │ │ ├── consumptionSpeed │ │ │ ├── consumptionSpeed.cxx │ │ │ └── consumptionSpeed.hxx │ │ │ ├── reactionRateFlameArea │ │ │ ├── reactionRateFlameArea.cxx │ │ │ ├── reactionRateFlameArea.hxx │ │ │ └── reactionRateFlameAreaNew.cxx │ │ │ └── relaxation │ │ │ ├── relaxationRateFlameAreaModels.cxx │ │ │ └── relaxationRateFlameAreaModels.hxx │ │ ├── PaSR │ │ ├── PaSR.cxx-backup │ │ ├── PaSR.hxx │ │ ├── PaSRI.hxx │ │ └── PaSRs.cxx │ │ ├── diffusion │ │ ├── diffusion.cxx-backup │ │ ├── diffusion.hxx │ │ ├── diffusionI.hxx │ │ └── diffusions.cxx │ │ ├── functionObjects │ │ └── Qdot │ │ │ ├── Qdot.cxx │ │ │ └── Qdot.hxx │ │ ├── infinitelyFastChemistry │ │ ├── infinitelyFastChemistry.cxx-backup │ │ ├── infinitelyFastChemistry.hxx │ │ ├── infinitelyFastChemistryI.hxx │ │ └── infinitelyFastChemistrys.cxx │ │ ├── laminar │ │ ├── laminarTemplate.cxx-backup │ │ ├── laminarTemplate.hxx │ │ ├── laminarTemplateI.hxx │ │ └── laminars.cxx │ │ ├── module │ │ └── CombustionModels_Module.hxx │ │ ├── noCombustion │ │ ├── EDCName.cxx │ │ ├── noCombustion.cxx-backup │ │ ├── noCombustion.hxx │ │ ├── noCombustionI.hxx │ │ └── noCombustions.cxx │ │ ├── radiationModels │ │ └── absorptionEmissionModels │ │ │ ├── greyMeanCombustion │ │ │ ├── greyMeanCombustion.cxx │ │ │ └── greyMeanCombustion.hxx │ │ │ └── wideBandCombustion │ │ │ ├── wideBandCombustion.cxx │ │ │ └── wideBandCombustion.hxx │ │ ├── singleStepCombustion │ │ ├── singleStepCombustion.cxx-backup │ │ ├── singleStepCombustion.hxx │ │ └── singleStepCombustionI.hxx │ │ └── zoneCombustion │ │ ├── zoneCombustion.cxx-backup │ │ ├── zoneCombustion.hxx │ │ ├── zoneCombustionI.hxx │ │ └── zoneCombustions.cxx └── include │ ├── ChemistryCombustionTemplate.hxx │ ├── ChemistryCombustionTemplateI.hxx │ ├── CombustionModelTemplate.hxx │ ├── CombustionModelTemplateI.hxx │ ├── CombustionModels_Module.hxx │ ├── EDC.hxx │ ├── EDCI.hxx │ ├── FSD.hxx │ ├── FSDI.hxx │ ├── PaSR.hxx │ ├── PaSRI.hxx │ ├── Qdot.hxx │ ├── ThermoCombustionTemplate.hxx │ ├── ThermoCombustionTemplateI.hxx │ ├── combustionModel.hxx │ ├── combustionModelI.hxx │ ├── combustionModelTemplatesI.hxx │ ├── consumptionSpeed.hxx │ ├── diffusion.hxx │ ├── diffusionI.hxx │ ├── greyMeanCombustion.hxx │ ├── infinitelyFastChemistry.hxx │ ├── infinitelyFastChemistryI.hxx │ ├── laminarTemplate.hxx │ ├── laminarTemplateI.hxx │ ├── makeCombustionTypes.hxx │ ├── noCombustion.hxx │ ├── noCombustionI.hxx │ ├── reactionRateFlameArea.hxx │ ├── relaxationRateFlameAreaModels.hxx │ ├── singleStepCombustion.hxx │ ├── singleStepCombustionI.hxx │ ├── wideBandCombustion.hxx │ ├── zoneCombustion.hxx │ └── zoneCombustionI.hxx ├── TnbConversion ├── TnbConversion.vcxproj ├── TnbConversion.vcxproj.filters ├── TnbLib │ ├── conversion │ │ ├── Allwmake │ │ ├── ensight │ │ │ ├── file │ │ │ │ ├── ensightFile.cxx │ │ │ │ ├── ensightFile.hxx │ │ │ │ ├── ensightGeoFile.cxx │ │ │ │ └── ensightGeoFile.hxx │ │ │ └── part │ │ │ │ ├── ensightPart.cxx │ │ │ │ ├── ensightPart.hxx │ │ │ │ ├── ensightPartCells.cxx │ │ │ │ ├── ensightPartCells.hxx │ │ │ │ ├── ensightPartFaces.cxx │ │ │ │ ├── ensightPartFaces.hxx │ │ │ │ ├── ensightPartI.hxx │ │ │ │ ├── ensightPartIO.cxx │ │ │ │ ├── ensightPartTemplates.cxx-backup │ │ │ │ ├── ensightParts.cxx │ │ │ │ ├── ensightParts.hxx │ │ │ │ ├── ensightPartsI.hxx │ │ │ │ └── ensightPartsTemplates.cxx-backup │ │ ├── meshReader │ │ │ ├── README │ │ │ ├── calcPointCells.cxx │ │ │ ├── createPolyBoundary.cxx │ │ │ ├── createPolyCells.cxx │ │ │ ├── meshReader.cxx │ │ │ ├── meshReader.hxx │ │ │ ├── meshReaderAux.cxx │ │ │ └── starcd │ │ │ │ ├── STARCDMeshReader.cxx │ │ │ │ └── STARCDMeshReader.hxx │ │ ├── meshTables │ │ │ ├── README │ │ │ ├── boundaryRegion.cxx │ │ │ ├── boundaryRegion.hxx │ │ │ ├── cellTable.cxx │ │ │ ├── cellTable.hxx │ │ │ └── remappingDict │ │ ├── meshWriter │ │ │ ├── meshWriter.cxx │ │ │ ├── meshWriter.hxx │ │ │ └── starcd │ │ │ │ ├── STARCDMeshWriter.cxx │ │ │ │ └── STARCDMeshWriter.hxx │ │ ├── module │ │ │ └── Conversion_Module.hxx │ │ └── polyDualMesh │ │ │ ├── polyDualMesh.cxx │ │ │ └── polyDualMesh.hxx │ ├── foamToVTK │ │ ├── internalWriter.cxx │ │ ├── internalWriter.hxx │ │ ├── internalWriterI.hxx │ │ ├── internalWriterTemplates.cxx-backup │ │ ├── lagrangianWriter.cxx │ │ ├── lagrangianWriter.hxx │ │ ├── lagrangianWriterI.hxx │ │ ├── patchWriter.cxx │ │ ├── patchWriter.hxx │ │ ├── patchWriterI.hxx │ │ ├── patchWriterTemplates.cxx-backup │ │ ├── readFields.cxx │ │ ├── readFields.hxx │ │ ├── surfaceMeshWriter.cxx │ │ ├── surfaceMeshWriter.hxx │ │ ├── surfaceMeshWriterI.hxx │ │ ├── surfaceMeshWriterTemplates.cxx-backup │ │ ├── vtkMesh.cxx │ │ ├── vtkMesh.hxx │ │ ├── vtkTopo.cxx │ │ ├── vtkTopo.hxx │ │ ├── writeFaceSet.cxx │ │ ├── writeFaceSet.hxx │ │ ├── writeFuns.cxx │ │ ├── writeFuns.hxx │ │ ├── writeFunsI.hxx │ │ ├── writeFunsTemplates.cxx-backup │ │ ├── writePointSet.cxx │ │ ├── writePointSet.hxx │ │ ├── writeSurfFields.cxx │ │ ├── writeSurfFields.hxx │ │ └── writeVTK │ │ │ ├── writeVTK.cxx │ │ │ ├── writeVTK.hxx │ │ │ ├── writeVTKI.hxx │ │ │ └── writeVTKTemplates.cxx-backup │ └── surfaceWriter │ │ ├── ensight │ │ ├── ensightPTraits.cxx │ │ ├── ensightPTraits.hxx │ │ ├── ensightSurfaceWriter.cxx │ │ └── ensightSurfaceWriter.hxx │ │ ├── foam │ │ ├── foamSurfaceWriter.cxx │ │ └── foamSurfaceWriter.hxx │ │ ├── makeSurfaceWriterMethods.hxx │ │ ├── nastran │ │ ├── nastranSurfaceWriter.cxx │ │ ├── nastranSurfaceWriter.hxx │ │ ├── nastranSurfaceWriterI.hxx │ │ └── nastranSurfaceWriterTemplates.cxx-backup │ │ ├── none │ │ ├── noSurfaceWriter.cxx │ │ └── noSurfaceWriter.hxx │ │ ├── proxy │ │ ├── proxySurfaceWriter.cxx │ │ └── proxySurfaceWriter.hxx │ │ ├── raw │ │ ├── rawSurfaceWriter.cxx │ │ └── rawSurfaceWriter.hxx │ │ ├── starcd │ │ ├── starcdSurfaceWriter.cxx │ │ └── starcdSurfaceWriter.hxx │ │ ├── surfaceWriter.cxx │ │ ├── surfaceWriter.hxx │ │ └── vtk │ │ ├── vtkSurfaceWriter.cxx │ │ └── vtkSurfaceWriter.hxx └── include │ ├── Conversion_Module.hxx │ ├── STARCDMeshReader.hxx │ ├── STARCDMeshWriter.hxx │ ├── boundaryRegion.hxx │ ├── cellTable.hxx │ ├── ensightFile.hxx │ ├── ensightGeoFile.hxx │ ├── ensightPTraits.hxx │ ├── ensightPart.hxx │ ├── ensightPartCells.hxx │ ├── ensightPartFaces.hxx │ ├── ensightPartI.hxx │ ├── ensightParts.hxx │ ├── ensightPartsI.hxx │ ├── ensightSurfaceWriter.hxx │ ├── foamSurfaceWriter.hxx │ ├── internalWriter.hxx │ ├── internalWriterI.hxx │ ├── lagrangianWriter.hxx │ ├── lagrangianWriterI.hxx │ ├── makeSurfaceWriterMethods.hxx │ ├── meshReader.hxx │ ├── meshWriter.hxx │ ├── nastranSurfaceWriter.hxx │ ├── nastranSurfaceWriterI.hxx │ ├── noSurfaceWriter.hxx │ ├── patchWriter.hxx │ ├── patchWriterI.hxx │ ├── polyDualMesh.hxx │ ├── proxySurfaceWriter.hxx │ ├── rawSurfaceWriter.hxx │ ├── readFields.hxx │ ├── starcdSurfaceWriter.hxx │ ├── surfaceMeshWriter.hxx │ ├── surfaceMeshWriterI.hxx │ ├── surfaceWriter.hxx │ ├── vtkMesh.hxx │ ├── vtkSurfaceWriter.hxx │ ├── vtkTopo.hxx │ ├── writeFaceSet.hxx │ ├── writeFuns.hxx │ ├── writeFunsI.hxx │ ├── writePointSet.hxx │ ├── writeSurfFields.hxx │ ├── writeVTK.hxx │ └── writeVTKI.hxx ├── TnbDynamicMesh ├── TnbDynamicMesh.vcxproj ├── TnbDynamicMesh.vcxproj.filters ├── TnbLib │ ├── dynamicFvMesh │ │ ├── dynamicFvMesh │ │ │ ├── dynamicFvMesh.cxx │ │ │ ├── dynamicFvMesh.hxx │ │ │ └── dynamicFvMeshNew.cxx │ │ ├── dynamicInkJetFvMesh │ │ │ ├── dynamicInkJetFvMesh.cxx │ │ │ └── dynamicInkJetFvMesh.hxx │ │ ├── dynamicInterpolatedFvMesh │ │ │ ├── dynamicInterpolatedFvMesh.cxx │ │ │ └── dynamicInterpolatedFvMesh.hxx │ │ ├── dynamicMotionSolverFvMesh │ │ │ ├── dynamicMotionSolverFvMesh.cxx │ │ │ └── dynamicMotionSolverFvMesh.hxx │ │ ├── dynamicRefineFvMesh │ │ │ ├── dynamicMeshDict │ │ │ ├── dynamicRefineFvMesh.cxx │ │ │ └── dynamicRefineFvMesh.hxx │ │ ├── include │ │ │ ├── createDyMControls.lxx │ │ │ ├── createDynamicFvMesh.lxx │ │ │ ├── createNamedDynamicFvMesh.lxx │ │ │ ├── meshCourantNo.lxx │ │ │ └── readDyMControls.lxx │ │ └── staticFvMesh │ │ │ ├── staticFvMesh.cxx │ │ │ └── staticFvMesh.hxx │ ├── dynamicMesh │ │ ├── attachDetach │ │ │ ├── attachDetach.cxx │ │ │ ├── attachDetach.hxx │ │ │ ├── attachDetachPointMatchMap.cxx │ │ │ ├── attachInterface.cxx │ │ │ └── detachInterface.cxx │ │ ├── boundaryMesh │ │ │ ├── bMesh.hxx │ │ │ ├── boundaryMesh.cxx │ │ │ └── boundaryMesh.hxx │ │ ├── boundaryPatch │ │ │ ├── boundaryPatch.cxx │ │ │ └── boundaryPatch.hxx │ │ ├── createShellMesh │ │ │ ├── createShellMesh.cxx │ │ │ └── createShellMesh.hxx │ │ ├── extrudePatchMesh │ │ │ ├── extrudePatchMesh.cxx │ │ │ └── extrudePatchMesh.hxx │ │ ├── fvMeshAdder │ │ │ ├── directPointPatchFieldMapper.hxx │ │ │ ├── fvMeshAdder.cxx │ │ │ ├── fvMeshAdder.hxx │ │ │ ├── fvMeshAdderI.hxx │ │ │ └── fvMeshAdderTemplates.cxx-backup │ │ ├── fvMeshDistribute │ │ │ ├── fvMeshDistribute.cxx │ │ │ ├── fvMeshDistribute.hxx │ │ │ ├── fvMeshDistributeI.hxx │ │ │ └── fvMeshDistributeTemplates.cxx-backup │ │ ├── fvMeshSubset │ │ │ ├── fvMeshSubset.cxx │ │ │ ├── fvMeshSubset.hxx │ │ │ ├── fvMeshSubsetInterpolate.cxx-backup │ │ │ └── fvMeshSubsetInterpolate_Imp.hxx │ │ ├── fvMeshTools │ │ │ ├── fvMeshTools.cxx │ │ │ ├── fvMeshTools.hxx │ │ │ ├── fvMeshToolsI.hxx │ │ │ └── fvMeshToolsTemplates.cxx-backup │ │ ├── layerAdditionRemoval │ │ │ ├── addCellLayer.cxx │ │ │ ├── layerAdditionRemoval.cxx │ │ │ ├── layerAdditionRemoval.hxx │ │ │ ├── removeCellLayer.cxx │ │ │ └── setLayerPairing.cxx │ │ ├── meshCut │ │ │ ├── cellCuts │ │ │ │ ├── cellCuts.cxx │ │ │ │ └── cellCuts.hxx │ │ │ ├── cellLooper │ │ │ │ ├── cellLooper.cxx │ │ │ │ ├── cellLooper.hxx │ │ │ │ ├── geomCellLooper.cxx │ │ │ │ ├── geomCellLooper.hxx │ │ │ │ ├── hexCellLooper.cxx │ │ │ │ ├── hexCellLooper.hxx │ │ │ │ ├── topoCellLooper.cxx │ │ │ │ └── topoCellLooper.hxx │ │ │ ├── directions │ │ │ │ ├── directionInfo │ │ │ │ │ ├── directionInfo.cxx │ │ │ │ │ ├── directionInfo.hxx │ │ │ │ │ └── directionInfoI.hxx │ │ │ │ ├── directions.cxx │ │ │ │ ├── directions.hxx │ │ │ │ └── directionsNamedEnum.cxx │ │ │ ├── edgeVertex │ │ │ │ ├── edgeVertex.cxx │ │ │ │ └── edgeVertex.hxx │ │ │ ├── meshModifiers │ │ │ │ ├── boundaryCutter │ │ │ │ │ ├── boundaryCutter.cxx │ │ │ │ │ └── boundaryCutter.hxx │ │ │ │ ├── meshCutAndRemove │ │ │ │ │ ├── meshCutAndRemove.cxx │ │ │ │ │ └── meshCutAndRemove.hxx │ │ │ │ ├── meshCutter │ │ │ │ │ ├── meshCutter.cxx │ │ │ │ │ └── meshCutter.hxx │ │ │ │ ├── multiDirRefinement │ │ │ │ │ ├── multiDirRefinement.cxx │ │ │ │ │ └── multiDirRefinement.hxx │ │ │ │ ├── refinementIterator │ │ │ │ │ ├── refinementIterator.cxx │ │ │ │ │ └── refinementIterator.hxx │ │ │ │ └── undoableMeshCutter │ │ │ │ │ ├── undoableMeshCutter.cxx │ │ │ │ │ └── undoableMeshCutter.hxx │ │ │ ├── refineCell │ │ │ │ ├── refineCell.cxx │ │ │ │ └── refineCell.hxx │ │ │ ├── splitCell │ │ │ │ ├── splitCell.cxx │ │ │ │ └── splitCell.hxx │ │ │ └── wallLayerCells │ │ │ │ ├── wallLayerCells.cxx │ │ │ │ ├── wallLayerCells.hxx │ │ │ │ └── wallNormalInfo │ │ │ │ ├── wallNormalInfo.cxx │ │ │ │ ├── wallNormalInfo.hxx │ │ │ │ └── wallNormalInfoI.hxx │ │ ├── module │ │ │ └── DynamicMesh_Module.hxx │ │ ├── motionSmoother │ │ │ ├── badQualityToCell │ │ │ │ ├── badQualityToCell.cxx │ │ │ │ └── badQualityToCell.hxx │ │ │ ├── badQualityToFace │ │ │ │ ├── badQualityToFace.cxx │ │ │ │ └── badQualityToFace.hxx │ │ │ ├── motionSmoother.cxx │ │ │ ├── motionSmoother.hxx │ │ │ ├── motionSmootherAlgo.cxx │ │ │ ├── motionSmootherAlgo.hxx │ │ │ ├── motionSmootherAlgoCheck.cxx │ │ │ ├── motionSmootherAlgoI.hxx │ │ │ ├── motionSmootherAlgoTemplates.cxx-backup │ │ │ ├── motionSmootherData.cxx │ │ │ ├── motionSmootherData.hxx │ │ │ └── polyMeshGeometry │ │ │ │ ├── polyMeshGeometry.cxx │ │ │ │ └── polyMeshGeometry.hxx │ │ ├── motionSolvers │ │ │ ├── componentDisplacement │ │ │ │ ├── componentDisplacementMotionSolver.cxx │ │ │ │ └── componentDisplacementMotionSolver.hxx │ │ │ ├── componentVelocity │ │ │ │ ├── componentVelocityMotionSolver.cxx │ │ │ │ └── componentVelocityMotionSolver.hxx │ │ │ ├── displacement │ │ │ │ ├── displacement │ │ │ │ │ ├── displacementMotionSolver.cxx │ │ │ │ │ └── displacementMotionSolver.hxx │ │ │ │ ├── interpolation │ │ │ │ │ ├── displacementInterpolationMotionSolver.cxx │ │ │ │ │ └── displacementInterpolationMotionSolver.hxx │ │ │ │ ├── layeredSolver │ │ │ │ │ ├── displacementLayeredMotionMotionSolver.cxx │ │ │ │ │ ├── displacementLayeredMotionMotionSolver.hxx │ │ │ │ │ ├── pointEdgeStructuredWalk.cxx │ │ │ │ │ ├── pointEdgeStructuredWalk.hxx │ │ │ │ │ └── pointEdgeStructuredWalkI.hxx │ │ │ │ ├── linearSolver │ │ │ │ │ ├── displacementLinearMotionMotionSolver.cxx │ │ │ │ │ └── displacementLinearMotionMotionSolver.hxx │ │ │ │ ├── points0 │ │ │ │ │ ├── points0MotionSolver.cxx │ │ │ │ │ └── points0MotionSolver.hxx │ │ │ │ └── solidBody │ │ │ │ │ ├── interpolatingSolidBodyMotionSolver │ │ │ │ │ ├── interpolatingSolidBodyMotionSolver.cxx │ │ │ │ │ └── interpolatingSolidBodyMotionSolver.hxx │ │ │ │ │ ├── multiSolidBodyMotionSolver │ │ │ │ │ ├── multiSolidBodyMotionSolver.cxx │ │ │ │ │ └── multiSolidBodyMotionSolver.hxx │ │ │ │ │ ├── solidBodyMotionFunctions │ │ │ │ │ ├── SDA │ │ │ │ │ │ ├── SDA.cxx │ │ │ │ │ │ └── SDA.hxx │ │ │ │ │ ├── axisRotationMotion │ │ │ │ │ │ ├── axisRotationMotion.cxx │ │ │ │ │ │ └── axisRotationMotion.hxx │ │ │ │ │ ├── linearMotion │ │ │ │ │ │ ├── linearMotion.cxx │ │ │ │ │ │ └── linearMotion.hxx │ │ │ │ │ ├── multiMotion │ │ │ │ │ │ ├── multiMotion.cxx │ │ │ │ │ │ └── multiMotion.hxx │ │ │ │ │ ├── oscillatingLinearMotion │ │ │ │ │ │ ├── oscillatingLinearMotion.cxx │ │ │ │ │ │ └── oscillatingLinearMotion.hxx │ │ │ │ │ ├── oscillatingRotatingMotion │ │ │ │ │ │ ├── oscillatingRotatingMotion.cxx │ │ │ │ │ │ └── oscillatingRotatingMotion.hxx │ │ │ │ │ ├── rotatingMotion │ │ │ │ │ │ ├── rotatingMotion.cxx │ │ │ │ │ │ └── rotatingMotion.hxx │ │ │ │ │ ├── solidBodyMotionFunction │ │ │ │ │ │ ├── solidBodyMotionFunction.cxx │ │ │ │ │ │ ├── solidBodyMotionFunction.hxx │ │ │ │ │ │ └── solidBodyMotionFunctionNew.cxx │ │ │ │ │ └── tabulated6DoFMotion │ │ │ │ │ │ ├── tabulated6DoFMotion.cxx │ │ │ │ │ │ └── tabulated6DoFMotion.hxx │ │ │ │ │ └── solidBodyMotionSolver │ │ │ │ │ ├── solidBodyMotionSolver.cxx │ │ │ │ │ └── solidBodyMotionSolver.hxx │ │ │ ├── motionSolver │ │ │ │ ├── motionSolver.cxx │ │ │ │ └── motionSolver.hxx │ │ │ ├── motionSolverList │ │ │ │ ├── motionSolverList.cxx │ │ │ │ └── motionSolverList.hxx │ │ │ └── velocity │ │ │ │ ├── velocityMotionSolver.cxx │ │ │ │ └── velocityMotionSolver.hxx │ │ ├── perfectInterface │ │ │ ├── perfectInterface.cxx │ │ │ └── perfectInterface.hxx │ │ ├── pointInterpolator │ │ │ ├── dynamicMeshPointInterpolator.cxx │ │ │ └── dynamicMeshPointInterpolator.hxx │ │ ├── pointPatchDist │ │ │ ├── externalPointEdgePoint.cxx │ │ │ ├── externalPointEdgePoint.hxx │ │ │ ├── externalPointEdgePointI.hxx │ │ │ ├── pointPatchDist.cxx │ │ │ └── pointPatchDist.hxx │ │ ├── polyMeshAdder │ │ │ ├── faceCoupleInfo.cxx │ │ │ ├── faceCoupleInfo.hxx │ │ │ ├── faceCoupleInfoI.hxx │ │ │ ├── faceCoupleInfoTemplates.cxx-backup │ │ │ ├── polyMeshAdder.cxx │ │ │ └── polyMeshAdder.hxx │ │ ├── polyMeshFilter │ │ │ ├── polyMeshFilter.cxx │ │ │ ├── polyMeshFilter.hxx │ │ │ ├── polyMeshFilterI.hxx │ │ │ ├── polyMeshFilterSettings.cxx │ │ │ ├── polyMeshFilterSettings.hxx │ │ │ ├── polyMeshFilterSettingsI.hxx │ │ │ └── polyMeshFilterTemplates.cxx-backup │ │ ├── polyTopoChange │ │ │ ├── attachPolyTopoChanger │ │ │ │ ├── attachPolyTopoChanger.cxx │ │ │ │ └── attachPolyTopoChanger.hxx │ │ │ ├── polyMeshModifier │ │ │ │ ├── polyMeshModifier.cxx │ │ │ │ ├── polyMeshModifier.hxx │ │ │ │ └── polyMeshModifierNew.cxx │ │ │ ├── polyTopoChange │ │ │ │ ├── addObject │ │ │ │ │ ├── polyAddCell.hxx │ │ │ │ │ ├── polyAddFace.hxx │ │ │ │ │ └── polyAddPoint.hxx │ │ │ │ ├── addPatchCellLayer.cxx │ │ │ │ ├── addPatchCellLayer.hxx │ │ │ │ ├── combineFaces.cxx │ │ │ │ ├── combineFaces.hxx │ │ │ │ ├── duplicatePoints.cxx │ │ │ │ ├── duplicatePoints.hxx │ │ │ │ ├── edgeCollapser.cxx │ │ │ │ ├── edgeCollapser.hxx │ │ │ │ ├── faceCollapser.cxx │ │ │ │ ├── faceCollapser.hxx │ │ │ │ ├── hexRef8 │ │ │ │ │ ├── hexRef8.cxx │ │ │ │ │ ├── hexRef8.hxx │ │ │ │ │ ├── hexRef8Data.cxx │ │ │ │ │ ├── hexRef8Data.hxx │ │ │ │ │ ├── refinementHistory.cxx │ │ │ │ │ └── refinementHistory.hxx │ │ │ │ ├── modifyObject │ │ │ │ │ ├── polyModifyCell.hxx │ │ │ │ │ ├── polyModifyFace.hxx │ │ │ │ │ └── polyModifyPoint.hxx │ │ │ │ ├── pointEdgeCollapse │ │ │ │ │ ├── pointEdgeCollapse.cxx │ │ │ │ │ ├── pointEdgeCollapse.hxx │ │ │ │ │ └── pointEdgeCollapseI.hxx │ │ │ │ ├── polyTopoChange.cxx │ │ │ │ ├── polyTopoChange.hxx │ │ │ │ ├── polyTopoChangeI.hxx │ │ │ │ ├── polyTopoChangeTemplates.cxx-backup │ │ │ │ ├── polyTopoChangeTemplatesI.hxx │ │ │ │ ├── refinementData.cxx │ │ │ │ ├── refinementData.hxx │ │ │ │ ├── refinementDataI.hxx │ │ │ │ ├── refinementDistanceData.cxx │ │ │ │ ├── refinementDistanceData.hxx │ │ │ │ ├── refinementDistanceDataI.hxx │ │ │ │ ├── removeCells.cxx │ │ │ │ ├── removeCells.hxx │ │ │ │ ├── removeFaces.cxx │ │ │ │ ├── removeFaces.hxx │ │ │ │ ├── removeObject │ │ │ │ │ ├── polyRemoveCell.hxx │ │ │ │ │ ├── polyRemoveFace.hxx │ │ │ │ │ └── polyRemovePoint.hxx │ │ │ │ ├── removePoints.cxx │ │ │ │ ├── removePoints.hxx │ │ │ │ ├── tetDecomposer.cxx │ │ │ │ ├── tetDecomposer.hxx │ │ │ │ └── topoAction │ │ │ │ │ ├── topoAction.hxx │ │ │ │ │ └── topoActions.cxx │ │ │ ├── polyTopoChanger │ │ │ │ ├── polyTopoChanger.cxx │ │ │ │ └── polyTopoChanger.hxx │ │ │ └── repatchPolyTopoChanger │ │ │ │ ├── repatchPolyTopoChanger.cxx │ │ │ │ └── repatchPolyTopoChanger.hxx │ │ ├── setUpdater │ │ │ ├── setUpdater.cxx │ │ │ ├── setUpdater.hxx │ │ │ ├── setUpdaterI.hxx │ │ │ └── setUpdaterTemplates.cxx-backup │ │ └── slidingInterface │ │ │ ├── coupleSlidingInterface.cxx │ │ │ ├── decoupleSlidingInterface.cxx │ │ │ ├── enrichedPatch │ │ │ ├── enrichedPatch.cxx │ │ │ ├── enrichedPatch.hxx │ │ │ ├── enrichedPatchCutFaces.cxx │ │ │ ├── enrichedPatchFaces.cxx │ │ │ ├── enrichedPatchMasterPoints.cxx │ │ │ ├── enrichedPatchPointMap.cxx │ │ │ └── enrichedPatchPointPoints.cxx │ │ │ ├── layerAdditionRemovalNamedEnum.cxx │ │ │ ├── slidingInterface.cxx │ │ │ ├── slidingInterface.hxx │ │ │ ├── slidingInterfaceAttachedAddressing.cxx │ │ │ ├── slidingInterfaceClearCouple.cxx │ │ │ └── slidingInterfaceProjectPoints.cxx │ └── extrude2DMesh │ │ ├── extrude2DMesh │ │ ├── extrude2DMesh.cxx │ │ └── extrude2DMesh.hxx │ │ └── patchToPoly2DMesh │ │ ├── patchToPoly2DMesh.cxx │ │ └── patchToPoly2DMesh.hxx ├── cpp.hint └── include │ ├── DynamicMesh_Module.hxx │ ├── SDA.hxx │ ├── addPatchCellLayer.hxx │ ├── attachDetach.hxx │ ├── attachPolyTopoChanger.hxx │ ├── axisRotationMotion.hxx │ ├── bMesh.hxx │ ├── badQualityToCell.hxx │ ├── badQualityToFace.hxx │ ├── boundaryCutter.hxx │ ├── boundaryMesh.hxx │ ├── boundaryPatch.hxx │ ├── cellCuts.hxx │ ├── cellLooper.hxx │ ├── combineFaces.hxx │ ├── componentDisplacementMotionSolver.hxx │ ├── componentVelocityMotionSolver.hxx │ ├── createShellMesh.hxx │ ├── directPointPatchFieldMapper.hxx │ ├── directionInfo.hxx │ ├── directionInfoI.hxx │ ├── directions.hxx │ ├── displacementInterpolationMotionSolver.hxx │ ├── displacementLayeredMotionMotionSolver.hxx │ ├── displacementLinearMotionMotionSolver.hxx │ ├── displacementMotionSolver.hxx │ ├── duplicatePoints.hxx │ ├── dynamicFvMesh.hxx │ ├── dynamicInkJetFvMesh.hxx │ ├── dynamicInterpolatedFvMesh.hxx │ ├── dynamicMeshPointInterpolator.hxx │ ├── dynamicMotionSolverFvMesh.hxx │ ├── dynamicRefineFvMesh.hxx │ ├── edgeCollapser.hxx │ ├── edgeVertex.hxx │ ├── enrichedPatch.hxx │ ├── externalPointEdgePoint.hxx │ ├── externalPointEdgePointI.hxx │ ├── extrude2DMesh.hxx │ ├── extrudePatchMesh.hxx │ ├── faceCollapser.hxx │ ├── faceCoupleInfo.hxx │ ├── faceCoupleInfoI.hxx │ ├── fvMeshAdder.hxx │ ├── fvMeshAdderI.hxx │ ├── fvMeshDistribute.hxx │ ├── fvMeshDistributeI.hxx │ ├── fvMeshSubset.hxx │ ├── fvMeshSubsetInterpolate_Imp.hxx │ ├── fvMeshTools.hxx │ ├── fvMeshToolsI.hxx │ ├── geomCellLooper.hxx │ ├── hexCellLooper.hxx │ ├── hexRef8.hxx │ ├── hexRef8Data.hxx │ ├── interpolatingSolidBodyMotionSolver.hxx │ ├── layerAdditionRemoval.hxx │ ├── linearMotion.hxx │ ├── meshCutAndRemove.hxx │ ├── meshCutter.hxx │ ├── motionSmoother.hxx │ ├── motionSmootherAlgo.hxx │ ├── motionSmootherAlgoI.hxx │ ├── motionSmootherData.hxx │ ├── motionSolver.hxx │ ├── motionSolverList.hxx │ ├── multiDirRefinement.hxx │ ├── multiMotion.hxx │ ├── multiSolidBodyMotionSolver.hxx │ ├── oscillatingLinearMotion.hxx │ ├── oscillatingRotatingMotion.hxx │ ├── patchToPoly2DMesh.hxx │ ├── perfectInterface.hxx │ ├── pointEdgeCollapse.hxx │ ├── pointEdgeCollapseI.hxx │ ├── pointEdgeStructuredWalk.hxx │ ├── pointEdgeStructuredWalkI.hxx │ ├── pointPatchDist.hxx │ ├── points0MotionSolver.hxx │ ├── polyAddCell.hxx │ ├── polyAddFace.hxx │ ├── polyAddPoint.hxx │ ├── polyMeshAdder.hxx │ ├── polyMeshFilter.hxx │ ├── polyMeshFilterI.hxx │ ├── polyMeshFilterSettings.hxx │ ├── polyMeshFilterSettingsI.hxx │ ├── polyMeshGeometry.hxx │ ├── polyMeshModifier.hxx │ ├── polyModifyCell.hxx │ ├── polyModifyFace.hxx │ ├── polyModifyPoint.hxx │ ├── polyRemoveCell.hxx │ ├── polyRemoveFace.hxx │ ├── polyRemovePoint.hxx │ ├── polyTopoChange.hxx │ ├── polyTopoChangeI.hxx │ ├── polyTopoChangeTemplatesI.hxx │ ├── polyTopoChanger.hxx │ ├── refineCell.hxx │ ├── refinementData.hxx │ ├── refinementDataI.hxx │ ├── refinementDistanceData.hxx │ ├── refinementDistanceDataI.hxx │ ├── refinementHistory.hxx │ ├── refinementIterator.hxx │ ├── removeCells.hxx │ ├── removeFaces.hxx │ ├── removePoints.hxx │ ├── repatchPolyTopoChanger.hxx │ ├── rotatingMotion.hxx │ ├── setUpdater.hxx │ ├── setUpdaterI.hxx │ ├── slidingInterface.hxx │ ├── solidBodyMotionFunction.hxx │ ├── solidBodyMotionSolver.hxx │ ├── splitCell.hxx │ ├── staticFvMesh.hxx │ ├── tabulated6DoFMotion.hxx │ ├── tetDecomposer.hxx │ ├── topoAction.hxx │ ├── topoCellLooper.hxx │ ├── undoableMeshCutter.hxx │ ├── velocityMotionSolver.hxx │ ├── wallLayerCells.hxx │ ├── wallNormalInfo.hxx │ └── wallNormalInfoI.hxx ├── TnbEngine ├── TnbEngine.vcxproj ├── TnbEngine.vcxproj.filters ├── TnbLib │ └── engine │ │ ├── engineMesh │ │ ├── engineMesh │ │ │ ├── engineMesh.cxx │ │ │ ├── engineMesh.hxx │ │ │ └── engineMeshNew.cxx │ │ ├── fvMotionSolverEngineMesh │ │ │ ├── fvMotionSolverEngineMesh.cxx │ │ │ └── fvMotionSolverEngineMesh.hxx │ │ ├── layeredEngineMesh │ │ │ ├── layeredEngineMesh.cxx │ │ │ └── layeredEngineMesh.hxx │ │ └── staticEngineMesh │ │ │ ├── staticEngineMesh.cxx │ │ │ └── staticEngineMesh.hxx │ │ ├── enginePiston │ │ ├── enginePiston.cxx │ │ └── enginePiston.hxx │ │ ├── engineTime │ │ ├── crankConRod │ │ │ ├── crankConRod.cxx │ │ │ └── crankConRod.hxx │ │ ├── engineTime │ │ │ ├── engineTime.cxx │ │ │ ├── engineTime.hxx │ │ │ └── engineTimeNew.cxx │ │ └── freePiston │ │ │ ├── freePiston.cxx │ │ │ └── freePiston.hxx │ │ ├── engineValve │ │ ├── engineValve.cxx │ │ ├── engineValve.hxx │ │ └── valveBank.hxx │ │ ├── ignition │ │ ├── ignite.lxx │ │ ├── ignition.cxx │ │ ├── ignition.hxx │ │ ├── ignitionIO.cxx │ │ ├── ignitionSite.cxx │ │ ├── ignitionSite.hxx │ │ └── ignitionSiteIO.cxx │ │ ├── include │ │ ├── StCorr.lxx │ │ ├── createEngineMesh.lxx │ │ ├── createEngineTime.lxx │ │ └── readEngineTimeControls.lxx │ │ └── module │ │ └── Engine_Module.hxx └── include │ ├── Engine_Module.hxx │ ├── crankConRod.hxx │ ├── engineMesh.hxx │ ├── enginePiston.hxx │ ├── engineTime.hxx │ ├── engineValve.hxx │ ├── freePiston.hxx │ ├── fvMotionSolverEngineMesh.hxx │ ├── ignition.hxx │ ├── ignitionSite.hxx │ ├── layeredEngineMesh.hxx │ ├── staticEngineMesh.hxx │ └── valveBank.hxx ├── TnbFiniteVolume ├── TnbFiniteVolume.vcxproj ├── TnbFiniteVolume.vcxproj.filters ├── TnbLib │ ├── Base │ │ └── fields │ │ │ └── DimensionedFields │ │ │ └── DimensionedField │ │ │ └── MapDimensionedFields.hxx │ └── FiniteVolume │ │ ├── cfdTools │ │ ├── compressible │ │ │ ├── compressibleContinuityErrs.lxx │ │ │ ├── compressibleCourantNo.lxx │ │ │ ├── compressibleCreatePhi.lxx │ │ │ ├── createRhoUf.lxx │ │ │ ├── createRhoUfIfPresent.lxx │ │ │ ├── rhoEqn.lxx │ │ │ └── updateRhoUf.lxx │ │ ├── general │ │ │ ├── CorrectPhi │ │ │ │ ├── CorrectPhi.cxx-backup │ │ │ │ ├── CorrectPhi.hxx │ │ │ │ ├── CorrectPhiI.hxx │ │ │ │ └── correctUphiBCs.cxx │ │ │ ├── MRF │ │ │ │ ├── IOMRFZoneList.cxx │ │ │ │ ├── IOMRFZoneList.hxx │ │ │ │ ├── MRFZone.cxx │ │ │ │ ├── MRFZone.hxx │ │ │ │ ├── MRFZoneI.hxx │ │ │ │ ├── MRFZoneList.cxx │ │ │ │ ├── MRFZoneList.hxx │ │ │ │ ├── MRFZoneListI.hxx │ │ │ │ ├── MRFZoneListTemplates.cxx-backup │ │ │ │ ├── MRFZoneTemplates.cxx-backup │ │ │ │ └── MRFZoneTemplatesI.hxx │ │ │ ├── SRF │ │ │ │ ├── SRFModel │ │ │ │ │ ├── SRFModel │ │ │ │ │ │ ├── SRFModel.cxx │ │ │ │ │ │ ├── SRFModel.hxx │ │ │ │ │ │ └── SRFModelNew.cxx │ │ │ │ │ └── rpm │ │ │ │ │ │ ├── rpm.cxx │ │ │ │ │ │ └── rpm.hxx │ │ │ │ └── derivedFvPatchFields │ │ │ │ │ ├── SRFFreestreamVelocityFvPatchVectorField │ │ │ │ │ ├── SRFFreestreamVelocityFvPatchVectorField.cxx │ │ │ │ │ └── SRFFreestreamVelocityFvPatchVectorField.hxx │ │ │ │ │ ├── SRFVelocityFvPatchVectorField │ │ │ │ │ ├── SRFVelocityFvPatchVectorField.cxx │ │ │ │ │ └── SRFVelocityFvPatchVectorField.hxx │ │ │ │ │ └── SRFWallVelocityFvPatchVectorField │ │ │ │ │ ├── SRFWallVelocityFvPatchVectorField.cxx │ │ │ │ │ └── SRFWallVelocityFvPatchVectorField.hxx │ │ │ ├── adjustPhi │ │ │ │ ├── adjustPhi.cxx │ │ │ │ └── adjustPhi.hxx │ │ │ ├── bound │ │ │ │ ├── bound.cxx │ │ │ │ └── bound.hxx │ │ │ ├── constrainHbyA │ │ │ │ ├── constrainHbyA.cxx │ │ │ │ └── constrainHbyA.hxx │ │ │ ├── constrainPressure │ │ │ │ ├── constrainPressure.cxx-backup │ │ │ │ ├── constrainPressure.hxx │ │ │ │ └── constrainPressureI.hxx │ │ │ ├── findRefCell │ │ │ │ ├── findRefCell.cxx │ │ │ │ └── findRefCell.hxx │ │ │ ├── fvOptions │ │ │ │ ├── fvOption.cxx │ │ │ │ ├── fvOption.hxx │ │ │ │ ├── fvOptionI.hxx │ │ │ │ ├── fvOptionIO.cxx │ │ │ │ ├── fvOptionList.cxx │ │ │ │ ├── fvOptionList.hxx │ │ │ │ ├── fvOptionListI.hxx │ │ │ │ ├── fvOptionListTemplates.cxx-backup │ │ │ │ ├── fvOptions.cxx │ │ │ │ ├── fvOptions.hxx │ │ │ │ └── makeFvOption.hxx │ │ │ ├── include │ │ │ │ ├── alphaControls.lxx │ │ │ │ ├── checkPatchFieldTypes.lxx │ │ │ │ ├── createFvOptions.lxx │ │ │ │ ├── createMRF.lxx │ │ │ │ ├── createPimpleControl.lxx │ │ │ │ ├── createPisoControl.lxx │ │ │ │ ├── createRDeltaT.lxx │ │ │ │ ├── createSimpleControl.lxx │ │ │ │ ├── createTimeControls.lxx │ │ │ │ ├── fvCFD.hxx │ │ │ │ ├── gh.lxx │ │ │ │ ├── initContinuityErrs.lxx │ │ │ │ ├── readGravitationalAcceleration.lxx │ │ │ │ ├── readTimeControls.lxx │ │ │ │ ├── readhRef.lxx │ │ │ │ ├── readpRef.lxx │ │ │ │ ├── setDeltaT.lxx │ │ │ │ ├── setInitialDeltaT.lxx │ │ │ │ └── volContinuity.lxx │ │ │ ├── levelSet │ │ │ │ ├── levelSet.cxx │ │ │ │ ├── levelSet.hxx │ │ │ │ ├── levelSetI.hxx │ │ │ │ └── levelSetTemplates.cxx-backup │ │ │ ├── porosityModel │ │ │ │ ├── DarcyForchheimer │ │ │ │ │ ├── DarcyForchheimer.cxx │ │ │ │ │ ├── DarcyForchheimer.hxx │ │ │ │ │ ├── DarcyForchheimerI.hxx │ │ │ │ │ └── DarcyForchheimerTemplates.cxx-backup │ │ │ │ ├── fixedCoeff │ │ │ │ │ ├── fixedCoeff.cxx │ │ │ │ │ └── fixedCoeff.hxx │ │ │ │ ├── porosityModel │ │ │ │ │ ├── IOporosityModelList.cxx │ │ │ │ │ ├── IOporosityModelList.hxx │ │ │ │ │ ├── porosityModel.cxx │ │ │ │ │ ├── porosityModel.hxx │ │ │ │ │ ├── porosityModelI.hxx │ │ │ │ │ ├── porosityModelList.cxx │ │ │ │ │ ├── porosityModelList.hxx │ │ │ │ │ └── porosityModelNew.cxx │ │ │ │ ├── powerLaw │ │ │ │ │ ├── powerLaw.cxx │ │ │ │ │ ├── powerLaw.hxx │ │ │ │ │ ├── powerLawI.hxx │ │ │ │ │ └── powerLawTemplates.cxx-backup │ │ │ │ └── solidification │ │ │ │ │ ├── solidification.cxx │ │ │ │ │ ├── solidification.hxx │ │ │ │ │ ├── solidificationI.hxx │ │ │ │ │ └── solidificationTemplates.cxx-backup │ │ │ ├── pressureControl │ │ │ │ ├── pressureControl.cxx │ │ │ │ ├── pressureControl.hxx │ │ │ │ └── pressureControlI.hxx │ │ │ └── solutionControl │ │ │ │ ├── convergenceControl │ │ │ │ ├── convergenceControl │ │ │ │ │ ├── convergenceControl.cxx │ │ │ │ │ ├── convergenceControl.hxx │ │ │ │ │ ├── convergenceControlI.hxx │ │ │ │ │ └── convergenceControlTemplates.cxx-backup │ │ │ │ ├── correctorConvergenceControl │ │ │ │ │ ├── correctorConvergenceControl.cxx │ │ │ │ │ ├── correctorConvergenceControl.hxx │ │ │ │ │ ├── correctorConvergenceControlI.hxx │ │ │ │ │ └── correctorConvergenceControlTemplates.cxx-backup │ │ │ │ ├── singleRegionConvergenceControl │ │ │ │ │ ├── singleRegionConvergenceControl.cxx │ │ │ │ │ └── singleRegionConvergenceControl.hxx │ │ │ │ └── singleRegionCorrectorConvergenceControl │ │ │ │ │ ├── singleRegionCorrectorConvergenceControl.cxx │ │ │ │ │ └── singleRegionCorrectorConvergenceControl.hxx │ │ │ │ ├── createControl.lxx │ │ │ │ ├── pimpleControl │ │ │ │ ├── pimpleControl │ │ │ │ │ ├── pimpleControl.cxx │ │ │ │ │ ├── pimpleControl.hxx │ │ │ │ │ └── pimpleControlI.hxx │ │ │ │ ├── pimpleLoop │ │ │ │ │ ├── pimpleLoop.cxx │ │ │ │ │ ├── pimpleLoop.hxx │ │ │ │ │ └── pimpleLoopI.hxx │ │ │ │ ├── pimpleMultiRegionControl │ │ │ │ │ ├── pimpleMultiRegionControl.cxx │ │ │ │ │ ├── pimpleMultiRegionControl.hxx │ │ │ │ │ └── pimpleMultiRegionControlI.hxx │ │ │ │ └── pimpleNoLoopControl │ │ │ │ │ ├── pimpleNoLoopControl.cxx │ │ │ │ │ ├── pimpleNoLoopControl.hxx │ │ │ │ │ └── pimpleNoLoopControlI.hxx │ │ │ │ ├── pisoControl │ │ │ │ ├── pisoControl.cxx │ │ │ │ ├── pisoControl.hxx │ │ │ │ └── pisoControlI.hxx │ │ │ │ ├── simpleControl │ │ │ │ ├── simpleControl.cxx │ │ │ │ └── simpleControl.hxx │ │ │ │ ├── solidControl │ │ │ │ └── solidNoLoopControl │ │ │ │ │ ├── solidNoLoopControl.cxx │ │ │ │ │ └── solidNoLoopControl.hxx │ │ │ │ └── solutionControl │ │ │ │ ├── fluidSolutionControl │ │ │ │ ├── fluidSolutionControl.cxx │ │ │ │ ├── fluidSolutionControl.hxx │ │ │ │ └── fluidSolutionControlI.hxx │ │ │ │ ├── multiRegionSolutionControl │ │ │ │ ├── multiRegionSolutionControl.cxx │ │ │ │ └── multiRegionSolutionControl.hxx │ │ │ │ ├── nonOrthogonalSolutionControl │ │ │ │ ├── nonOrthogonalSolutionControl.cxx │ │ │ │ ├── nonOrthogonalSolutionControl.hxx │ │ │ │ └── nonOrthogonalSolutionControlI.hxx │ │ │ │ ├── singleRegionSolutionControl │ │ │ │ ├── singleRegionSolutionControl.cxx │ │ │ │ ├── singleRegionSolutionControl.hxx │ │ │ │ ├── singleRegionSolutionControlI.hxx │ │ │ │ ├── singleRegionSolutionControlTemplates.cxx-backup │ │ │ │ └── singleRegionSolutionControlTemplatesI.hxx │ │ │ │ └── solutionControl │ │ │ │ ├── solutionControl.cxx │ │ │ │ ├── solutionControl.hxx │ │ │ │ └── solutionControlI.hxx │ │ └── incompressible │ │ │ ├── CourantNo.lxx │ │ │ ├── continuityErrs.lxx │ │ │ ├── createPhi.lxx │ │ │ ├── createPhiv.lxx │ │ │ ├── createUf.lxx │ │ │ ├── createUfIfPresent.lxx │ │ │ ├── movingMeshContinuityErrs.lxx │ │ │ ├── movingMeshRhoUContinuityErrs.lxx │ │ │ └── updateUf.lxx │ │ ├── fields │ │ ├── fvPatchFields │ │ │ ├── basic │ │ │ │ ├── basicSymmetry │ │ │ │ │ ├── basicSymmetryFvPatchField.cxx-backup │ │ │ │ │ ├── basicSymmetryFvPatchField.hxx │ │ │ │ │ ├── basicSymmetryFvPatchFieldI.hxx │ │ │ │ │ ├── basicSymmetryFvPatchFields.hxx │ │ │ │ │ └── basicSymmetryFvPatchScalarField.cxx │ │ │ │ ├── calculated │ │ │ │ │ ├── calculatedFvPatchField.cxx-backup │ │ │ │ │ ├── calculatedFvPatchField.hxx │ │ │ │ │ ├── calculatedFvPatchFieldI.hxx │ │ │ │ │ ├── calculatedFvPatchFields.cxx │ │ │ │ │ ├── calculatedFvPatchFields.hxx │ │ │ │ │ └── calculatedFvPatchFieldsFwd.hxx │ │ │ │ ├── coupled │ │ │ │ │ ├── coupledFvPatchField.cxx-backup │ │ │ │ │ ├── coupledFvPatchField.hxx │ │ │ │ │ ├── coupledFvPatchFieldI.hxx │ │ │ │ │ ├── coupledFvPatchFields.cxx │ │ │ │ │ ├── coupledFvPatchFields.hxx │ │ │ │ │ └── coupledFvPatchFieldsFwd.hxx │ │ │ │ ├── directionMixed │ │ │ │ │ ├── directionMixedFvPatchField.cxx-backup │ │ │ │ │ ├── directionMixedFvPatchField.hxx │ │ │ │ │ ├── directionMixedFvPatchFieldI.hxx │ │ │ │ │ ├── directionMixedFvPatchFields.cxx │ │ │ │ │ ├── directionMixedFvPatchFields.hxx │ │ │ │ │ └── directionMixedFvPatchFieldsFwd.hxx │ │ │ │ ├── extrapolatedCalculated │ │ │ │ │ ├── extrapolatedCalculatedFvPatchField.cxx-backup │ │ │ │ │ ├── extrapolatedCalculatedFvPatchField.hxx │ │ │ │ │ ├── extrapolatedCalculatedFvPatchFieldI.hxx │ │ │ │ │ ├── extrapolatedCalculatedFvPatchFields.cxx │ │ │ │ │ ├── extrapolatedCalculatedFvPatchFields.hxx │ │ │ │ │ └── extrapolatedCalculatedFvPatchFieldsFwd.hxx │ │ │ │ ├── fixedGradient │ │ │ │ │ ├── fixedGradientFvPatchField.cxx-backup │ │ │ │ │ ├── fixedGradientFvPatchField.hxx │ │ │ │ │ ├── fixedGradientFvPatchFieldI.hxx │ │ │ │ │ ├── fixedGradientFvPatchFields.cxx │ │ │ │ │ ├── fixedGradientFvPatchFields.hxx │ │ │ │ │ └── fixedGradientFvPatchFieldsFwd.hxx │ │ │ │ ├── fixedValue │ │ │ │ │ ├── fixedValueFvPatchField.cxx-backup │ │ │ │ │ ├── fixedValueFvPatchField.hxx │ │ │ │ │ ├── fixedValueFvPatchFieldI.hxx │ │ │ │ │ ├── fixedValueFvPatchFields.cxx │ │ │ │ │ ├── fixedValueFvPatchFields.hxx │ │ │ │ │ └── fixedValueFvPatchFieldsFwd.hxx │ │ │ │ ├── mixed │ │ │ │ │ ├── mixedFvPatchField.cxx-backup │ │ │ │ │ ├── mixedFvPatchField.hxx │ │ │ │ │ ├── mixedFvPatchFieldI.hxx │ │ │ │ │ ├── mixedFvPatchFields.cxx │ │ │ │ │ ├── mixedFvPatchFields.hxx │ │ │ │ │ └── mixedFvPatchFieldsFwd.hxx │ │ │ │ ├── sliced │ │ │ │ │ ├── slicedFvPatchField.cxx-backup │ │ │ │ │ ├── slicedFvPatchField.hxx │ │ │ │ │ ├── slicedFvPatchFieldI.hxx │ │ │ │ │ ├── slicedFvPatchFields.cxx │ │ │ │ │ ├── slicedFvPatchFields.hxx │ │ │ │ │ └── slicedFvPatchFieldsFwd.hxx │ │ │ │ ├── transform │ │ │ │ │ ├── transformFvPatchField.cxx-backup │ │ │ │ │ ├── transformFvPatchField.hxx │ │ │ │ │ ├── transformFvPatchFieldI.hxx │ │ │ │ │ ├── transformFvPatchFields.cxx │ │ │ │ │ ├── transformFvPatchFields.hxx │ │ │ │ │ ├── transformFvPatchFieldsFwd.hxx │ │ │ │ │ └── transformFvPatchScalarField.cxx │ │ │ │ └── zeroGradient │ │ │ │ │ ├── zeroGradientFvPatchField.cxx-backup │ │ │ │ │ ├── zeroGradientFvPatchField.hxx │ │ │ │ │ ├── zeroGradientFvPatchFieldI.hxx │ │ │ │ │ ├── zeroGradientFvPatchFields.cxx │ │ │ │ │ ├── zeroGradientFvPatchFields.hxx │ │ │ │ │ └── zeroGradientFvPatchFieldsFwd.hxx │ │ │ ├── constraint │ │ │ │ ├── cyclic │ │ │ │ │ ├── cyclicFvPatchField.cxx-backup │ │ │ │ │ ├── cyclicFvPatchField.hxx │ │ │ │ │ ├── cyclicFvPatchFieldI.hxx │ │ │ │ │ ├── cyclicFvPatchFields.cxx │ │ │ │ │ ├── cyclicFvPatchFields.hxx │ │ │ │ │ └── cyclicFvPatchFieldsFwd.hxx │ │ │ │ ├── cyclicACMI │ │ │ │ │ ├── cyclicACMIFvPatchField.cxx-backup │ │ │ │ │ ├── cyclicACMIFvPatchField.hxx │ │ │ │ │ ├── cyclicACMIFvPatchFieldI.hxx │ │ │ │ │ ├── cyclicACMIFvPatchFields.cxx │ │ │ │ │ ├── cyclicACMIFvPatchFields.hxx │ │ │ │ │ └── cyclicACMIFvPatchFieldsFwd.hxx │ │ │ │ ├── cyclicAMI │ │ │ │ │ ├── cyclicAMIFvPatchField.cxx-backup │ │ │ │ │ ├── cyclicAMIFvPatchField.hxx │ │ │ │ │ ├── cyclicAMIFvPatchFieldI.hxx │ │ │ │ │ ├── cyclicAMIFvPatchFields.cxx │ │ │ │ │ ├── cyclicAMIFvPatchFields.hxx │ │ │ │ │ └── cyclicAMIFvPatchFieldsFwd.hxx │ │ │ │ ├── cyclicRepeatAMI │ │ │ │ │ ├── cyclicRepeatAMIFvPatchField.hxx │ │ │ │ │ ├── cyclicRepeatAMIFvPatchFields.cxx │ │ │ │ │ ├── cyclicRepeatAMIFvPatchFields.hxx │ │ │ │ │ └── cyclicRepeatAMIFvPatchFieldsFwd.hxx │ │ │ │ ├── cyclicSlip │ │ │ │ │ ├── cyclicSlipFvPatchField.cxx-backup │ │ │ │ │ ├── cyclicSlipFvPatchField.hxx │ │ │ │ │ ├── cyclicSlipFvPatchFieldI.hxx │ │ │ │ │ ├── cyclicSlipFvPatchFields.cxx │ │ │ │ │ ├── cyclicSlipFvPatchFields.hxx │ │ │ │ │ └── cyclicSlipFvPatchFieldsFwd.hxx │ │ │ │ ├── empty │ │ │ │ │ ├── emptyFvPatchField.cxx-backup │ │ │ │ │ ├── emptyFvPatchField.hxx │ │ │ │ │ ├── emptyFvPatchFieldI.hxx │ │ │ │ │ ├── emptyFvPatchFields.cxx │ │ │ │ │ ├── emptyFvPatchFields.hxx │ │ │ │ │ └── emptyFvPatchFieldsFwd.hxx │ │ │ │ ├── jumpCyclic │ │ │ │ │ ├── jumpCyclicFvPatchField.cxx-backup │ │ │ │ │ ├── jumpCyclicFvPatchField.hxx │ │ │ │ │ ├── jumpCyclicFvPatchFieldI.hxx │ │ │ │ │ ├── jumpCyclicFvPatchFields.cxx │ │ │ │ │ ├── jumpCyclicFvPatchFields.hxx │ │ │ │ │ └── jumpCyclicFvPatchFieldsFwd.hxx │ │ │ │ ├── jumpCyclicAMI │ │ │ │ │ ├── jumpCyclicAMIFvPatchField.cxx-backup │ │ │ │ │ ├── jumpCyclicAMIFvPatchField.hxx │ │ │ │ │ ├── jumpCyclicAMIFvPatchFieldI.hxx │ │ │ │ │ ├── jumpCyclicAMIFvPatchFields.cxx │ │ │ │ │ ├── jumpCyclicAMIFvPatchFields.hxx │ │ │ │ │ └── jumpCyclicAMIFvPatchFieldsFwd.hxx │ │ │ │ ├── nonuniformTransformCyclic │ │ │ │ │ ├── nonuniformTransformCyclicFvPatchField.cxx-backup │ │ │ │ │ ├── nonuniformTransformCyclicFvPatchField.hxx │ │ │ │ │ ├── nonuniformTransformCyclicFvPatchFieldI.hxx │ │ │ │ │ ├── nonuniformTransformCyclicFvPatchFields.cxx │ │ │ │ │ ├── nonuniformTransformCyclicFvPatchFields.hxx │ │ │ │ │ └── nonuniformTransformCyclicFvPatchFieldsFwd.hxx │ │ │ │ ├── processor │ │ │ │ │ ├── processorFvPatchField.cxx-backup │ │ │ │ │ ├── processorFvPatchField.hxx │ │ │ │ │ ├── processorFvPatchFieldI.hxx │ │ │ │ │ ├── processorFvPatchFields.cxx │ │ │ │ │ ├── processorFvPatchFields.hxx │ │ │ │ │ ├── processorFvPatchFieldsFwd.hxx │ │ │ │ │ ├── processorFvPatchScalarField.cxx │ │ │ │ │ └── processorFvPatchScalarField.hxx │ │ │ │ ├── processorCyclic │ │ │ │ │ ├── processorCyclicFvPatchField.cxx-backup │ │ │ │ │ ├── processorCyclicFvPatchField.hxx │ │ │ │ │ ├── processorCyclicFvPatchFieldI.hxx │ │ │ │ │ ├── processorCyclicFvPatchFields.cxx │ │ │ │ │ ├── processorCyclicFvPatchFields.hxx │ │ │ │ │ └── processorCyclicFvPatchFieldsFwd.hxx │ │ │ │ ├── symmetry │ │ │ │ │ ├── symmetryFvPatchField.cxx-backup │ │ │ │ │ ├── symmetryFvPatchField.hxx │ │ │ │ │ ├── symmetryFvPatchFieldI.hxx │ │ │ │ │ ├── symmetryFvPatchFields.cxx │ │ │ │ │ ├── symmetryFvPatchFields.hxx │ │ │ │ │ └── symmetryFvPatchFieldsFwd.hxx │ │ │ │ ├── symmetryPlane │ │ │ │ │ ├── symmetryPlaneFvPatchField.cxx-backup │ │ │ │ │ ├── symmetryPlaneFvPatchField.hxx │ │ │ │ │ ├── symmetryPlaneFvPatchFieldI.hxx │ │ │ │ │ ├── symmetryPlaneFvPatchFields.cxx │ │ │ │ │ ├── symmetryPlaneFvPatchFields.hxx │ │ │ │ │ ├── symmetryPlaneFvPatchFieldsFwd.hxx │ │ │ │ │ └── symmetryPlaneFvPatchScalarField.cxx │ │ │ │ └── wedge │ │ │ │ │ ├── wedgeFvPatchField.cxx-backup │ │ │ │ │ ├── wedgeFvPatchField.hxx │ │ │ │ │ ├── wedgeFvPatchFieldI.hxx │ │ │ │ │ ├── wedgeFvPatchFields.cxx │ │ │ │ │ ├── wedgeFvPatchFields.hxx │ │ │ │ │ ├── wedgeFvPatchFieldsFwd.hxx │ │ │ │ │ └── wedgeFvPatchScalarField.cxx │ │ │ ├── derived │ │ │ │ ├── PrghPressure │ │ │ │ │ ├── PrghPressureFvPatchScalarField.cxx-backup │ │ │ │ │ ├── PrghPressureFvPatchScalarField.hxx │ │ │ │ │ ├── PrghPressureFvPatchScalarFieldI.hxx │ │ │ │ │ └── prghPressureFvPatchScalarFields.cxx │ │ │ │ ├── activeBaffleVelocity │ │ │ │ │ ├── activeBaffleVelocityFvPatchVectorField.cxx │ │ │ │ │ └── activeBaffleVelocityFvPatchVectorField.hxx │ │ │ │ ├── activePressureForceBaffleVelocity │ │ │ │ │ ├── activePressureForceBaffleVelocityFvPatchVectorField.cxx │ │ │ │ │ └── activePressureForceBaffleVelocityFvPatchVectorField.hxx │ │ │ │ ├── advective │ │ │ │ │ ├── advectiveFvPatchField.cxx-backup │ │ │ │ │ ├── advectiveFvPatchField.hxx │ │ │ │ │ ├── advectiveFvPatchFieldI.hxx │ │ │ │ │ ├── advectiveFvPatchFields.cxx │ │ │ │ │ ├── advectiveFvPatchFields.hxx │ │ │ │ │ └── advectiveFvPatchFieldsFwd.hxx │ │ │ │ ├── codedFixedValue │ │ │ │ │ ├── codedFixedValueFvPatchField.cxx-backup │ │ │ │ │ ├── codedFixedValueFvPatchField.hxx │ │ │ │ │ ├── codedFixedValueFvPatchFieldI.hxx │ │ │ │ │ ├── codedFixedValueFvPatchFields.cxx │ │ │ │ │ ├── codedFixedValueFvPatchFields.hxx │ │ │ │ │ └── codedFixedValueFvPatchFieldsFwd.hxx │ │ │ │ ├── codedMixed │ │ │ │ │ ├── codedMixedFvPatchField.cxx-backup │ │ │ │ │ ├── codedMixedFvPatchField.hxx │ │ │ │ │ ├── codedMixedFvPatchFieldI.hxx │ │ │ │ │ ├── codedMixedFvPatchFields.cxx │ │ │ │ │ ├── codedMixedFvPatchFields.hxx │ │ │ │ │ └── codedMixedFvPatchFieldsFwd.hxx │ │ │ │ ├── cylindricalInletVelocity │ │ │ │ │ ├── cylindricalInletVelocityFvPatchVectorField.cxx │ │ │ │ │ └── cylindricalInletVelocityFvPatchVectorField.hxx │ │ │ │ ├── externalCoupledMixed │ │ │ │ │ ├── externalCoupledMixedFvPatchField.cxx-backup │ │ │ │ │ ├── externalCoupledMixedFvPatchField.hxx │ │ │ │ │ ├── externalCoupledMixedFvPatchFieldI.hxx │ │ │ │ │ ├── externalCoupledMixedFvPatchFields.cxx │ │ │ │ │ ├── externalCoupledMixedFvPatchFields.hxx │ │ │ │ │ └── externalCoupledMixedFvPatchFieldsFwd.hxx │ │ │ │ ├── fanPressure │ │ │ │ │ ├── fanPressureFvPatchScalarField.cxx │ │ │ │ │ └── fanPressureFvPatchScalarField.hxx │ │ │ │ ├── fanPressureJump │ │ │ │ │ ├── fanPressureJumpFvPatchScalarField.cxx │ │ │ │ │ └── fanPressureJumpFvPatchScalarField.hxx │ │ │ │ ├── fixedFluxExtrapolatedPressure │ │ │ │ │ ├── fixedFluxExtrapolatedPressureFvPatchScalarField.cxx │ │ │ │ │ └── fixedFluxExtrapolatedPressureFvPatchScalarField.hxx │ │ │ │ ├── fixedFluxPressure │ │ │ │ │ ├── fixedFluxPressureFvPatchScalarField.cxx │ │ │ │ │ └── fixedFluxPressureFvPatchScalarField.hxx │ │ │ │ ├── fixedInternalValue │ │ │ │ │ ├── fixedInternalValueFvPatchField.cxx-backup │ │ │ │ │ ├── fixedInternalValueFvPatchField.hxx │ │ │ │ │ ├── fixedInternalValueFvPatchFieldI.hxx │ │ │ │ │ ├── fixedInternalValueFvPatchFields.cxx │ │ │ │ │ └── fixedInternalValueFvPatchFields.hxx │ │ │ │ ├── fixedJump │ │ │ │ │ ├── fixedJumpFvPatchField.cxx-backup │ │ │ │ │ ├── fixedJumpFvPatchField.hxx │ │ │ │ │ ├── fixedJumpFvPatchFieldI.hxx │ │ │ │ │ ├── fixedJumpFvPatchFields.cxx │ │ │ │ │ ├── fixedJumpFvPatchFields.hxx │ │ │ │ │ └── fixedJumpFvPatchFieldsFwd.hxx │ │ │ │ ├── fixedJumpAMI │ │ │ │ │ ├── fixedJumpAMIFvPatchField.cxx-backup │ │ │ │ │ ├── fixedJumpAMIFvPatchField.hxx │ │ │ │ │ ├── fixedJumpAMIFvPatchFieldI.hxx │ │ │ │ │ ├── fixedJumpAMIFvPatchFields.cxx │ │ │ │ │ ├── fixedJumpAMIFvPatchFields.hxx │ │ │ │ │ └── fixedJumpAMIFvPatchFieldsFwd.hxx │ │ │ │ ├── fixedMean │ │ │ │ │ ├── fixedMeanFvPatchField.cxx-backup │ │ │ │ │ ├── fixedMeanFvPatchField.hxx │ │ │ │ │ ├── fixedMeanFvPatchFieldI.hxx │ │ │ │ │ ├── fixedMeanFvPatchFields.cxx │ │ │ │ │ ├── fixedMeanFvPatchFields.hxx │ │ │ │ │ └── fixedMeanFvPatchFieldsFwd.hxx │ │ │ │ ├── fixedMeanOutletInlet │ │ │ │ │ ├── fixedMeanOutletInletFvPatchField.cxx-backup │ │ │ │ │ ├── fixedMeanOutletInletFvPatchField.hxx │ │ │ │ │ ├── fixedMeanOutletInletFvPatchFieldI.hxx │ │ │ │ │ ├── fixedMeanOutletInletFvPatchFields.cxx │ │ │ │ │ ├── fixedMeanOutletInletFvPatchFields.hxx │ │ │ │ │ └── fixedMeanOutletInletFvPatchFieldsFwd.hxx │ │ │ │ ├── fixedNormalInletOutletVelocity │ │ │ │ │ ├── fixedNormalInletOutletVelocityFvPatchVectorField.cxx │ │ │ │ │ └── fixedNormalInletOutletVelocityFvPatchVectorField.hxx │ │ │ │ ├── fixedNormalSlip │ │ │ │ │ ├── fixedNormalSlipFvPatchField.cxx-backup │ │ │ │ │ ├── fixedNormalSlipFvPatchField.hxx │ │ │ │ │ ├── fixedNormalSlipFvPatchFieldI.hxx │ │ │ │ │ ├── fixedNormalSlipFvPatchFields.cxx │ │ │ │ │ ├── fixedNormalSlipFvPatchFields.hxx │ │ │ │ │ └── fixedNormalSlipFvPatchFieldsFwd.hxx │ │ │ │ ├── fixedPressureCompressibleDensity │ │ │ │ │ ├── fixedPressureCompressibleDensityFvPatchScalarField.cxx │ │ │ │ │ └── fixedPressureCompressibleDensityFvPatchScalarField.hxx │ │ │ │ ├── fixedProfile │ │ │ │ │ ├── fixedProfileFvPatchField.cxx-backup │ │ │ │ │ ├── fixedProfileFvPatchField.hxx │ │ │ │ │ ├── fixedProfileFvPatchFieldI.hxx │ │ │ │ │ ├── fixedProfileFvPatchFields.cxx │ │ │ │ │ ├── fixedProfileFvPatchFields.hxx │ │ │ │ │ └── fixedProfileFvPatchFieldsFwd.hxx │ │ │ │ ├── flowRateInletVelocity │ │ │ │ │ ├── flowRateInletVelocityFvPatchVectorField.cxx │ │ │ │ │ └── flowRateInletVelocityFvPatchVectorField.hxx │ │ │ │ ├── flowRateOutletVelocity │ │ │ │ │ ├── flowRateOutletVelocityFvPatchVectorField.cxx │ │ │ │ │ └── flowRateOutletVelocityFvPatchVectorField.hxx │ │ │ │ ├── fluxCorrectedVelocity │ │ │ │ │ ├── fluxCorrectedVelocityFvPatchVectorField.cxx │ │ │ │ │ └── fluxCorrectedVelocityFvPatchVectorField.hxx │ │ │ │ ├── freestream │ │ │ │ │ ├── freestreamFvPatchField.cxx-backup │ │ │ │ │ ├── freestreamFvPatchField.hxx │ │ │ │ │ ├── freestreamFvPatchFieldI.hxx │ │ │ │ │ ├── freestreamFvPatchFields.cxx │ │ │ │ │ ├── freestreamFvPatchFields.hxx │ │ │ │ │ └── freestreamFvPatchFieldsFwd.hxx │ │ │ │ ├── freestreamPressure │ │ │ │ │ ├── freestreamPressureFvPatchScalarField.cxx │ │ │ │ │ └── freestreamPressureFvPatchScalarField.hxx │ │ │ │ ├── freestreamVelocity │ │ │ │ │ ├── freestreamVelocityFvPatchVectorField.cxx │ │ │ │ │ └── freestreamVelocityFvPatchVectorField.hxx │ │ │ │ ├── inletOutlet │ │ │ │ │ ├── inletOutletFvPatchField.cxx-backup │ │ │ │ │ ├── inletOutletFvPatchField.hxx │ │ │ │ │ ├── inletOutletFvPatchFieldI.hxx │ │ │ │ │ ├── inletOutletFvPatchFields.cxx │ │ │ │ │ ├── inletOutletFvPatchFields.hxx │ │ │ │ │ └── inletOutletFvPatchFieldsFwd.hxx │ │ │ │ ├── inletOutletTotalTemperature │ │ │ │ │ ├── inletOutletTotalTemperatureFvPatchScalarField.cxx │ │ │ │ │ └── inletOutletTotalTemperatureFvPatchScalarField.hxx │ │ │ │ ├── interfaceCompression │ │ │ │ │ ├── interfaceCompressionFvPatchScalarField.cxx │ │ │ │ │ └── interfaceCompressionFvPatchScalarField.hxx │ │ │ │ ├── interstitialInletVelocity │ │ │ │ │ ├── interstitialInletVelocityFvPatchVectorField.cxx │ │ │ │ │ └── interstitialInletVelocityFvPatchVectorField.hxx │ │ │ │ ├── mappedField │ │ │ │ │ ├── mappedFieldFvPatchField.cxx-backup │ │ │ │ │ ├── mappedFieldFvPatchField.hxx │ │ │ │ │ ├── mappedFieldFvPatchFieldI.hxx │ │ │ │ │ ├── mappedFieldFvPatchFields.cxx │ │ │ │ │ ├── mappedFieldFvPatchFields.hxx │ │ │ │ │ ├── mappedFieldFvPatchFieldsFwd.hxx │ │ │ │ │ ├── mappedPatchFieldBase.cxx-backup │ │ │ │ │ ├── mappedPatchFieldBase.hxx │ │ │ │ │ └── mappedPatchFieldBaseI.hxx │ │ │ │ ├── mappedFixedInternalValue │ │ │ │ │ ├── mappedFixedInternalValueFvPatchField.cxx-backup │ │ │ │ │ ├── mappedFixedInternalValueFvPatchField.hxx │ │ │ │ │ ├── mappedFixedInternalValueFvPatchFieldI.hxx │ │ │ │ │ ├── mappedFixedInternalValueFvPatchFields.cxx │ │ │ │ │ ├── mappedFixedInternalValueFvPatchFields.hxx │ │ │ │ │ └── mappedFixedInternalValueFvPatchFieldsFwd.hxx │ │ │ │ ├── mappedFixedPushedInternalValue │ │ │ │ │ ├── mappedFixedPushedInternalValueFvPatchField.cxx-backup │ │ │ │ │ ├── mappedFixedPushedInternalValueFvPatchField.hxx │ │ │ │ │ ├── mappedFixedPushedInternalValueFvPatchFieldI.hxx │ │ │ │ │ ├── mappedFixedPushedInternalValueFvPatchFields.cxx │ │ │ │ │ ├── mappedFixedPushedInternalValueFvPatchFields.hxx │ │ │ │ │ └── mappedFixedPushedInternalValueFvPatchFieldsFwd.hxx │ │ │ │ ├── mappedFixedValue │ │ │ │ │ ├── mappedFixedValueFvPatchField.cxx-backup │ │ │ │ │ ├── mappedFixedValueFvPatchField.hxx │ │ │ │ │ ├── mappedFixedValueFvPatchFieldI.hxx │ │ │ │ │ ├── mappedFixedValueFvPatchFields.cxx │ │ │ │ │ ├── mappedFixedValueFvPatchFields.hxx │ │ │ │ │ └── mappedFixedValueFvPatchFieldsFwd.hxx │ │ │ │ ├── mappedFlowRate │ │ │ │ │ ├── mappedFlowRateFvPatchVectorField.cxx │ │ │ │ │ └── mappedFlowRateFvPatchVectorField.hxx │ │ │ │ ├── mappedVelocityFluxFixedValue │ │ │ │ │ ├── mappedVelocityFluxFixedValueFvPatchField.cxx │ │ │ │ │ └── mappedVelocityFluxFixedValueFvPatchField.hxx │ │ │ │ ├── matchedFlowRateOutletVelocity │ │ │ │ │ ├── matchedFlowRateOutletVelocityFvPatchVectorField.cxx │ │ │ │ │ └── matchedFlowRateOutletVelocityFvPatchVectorField.hxx │ │ │ │ ├── movingWallVelocity │ │ │ │ │ ├── movingWallVelocityFvPatchVectorField.cxx │ │ │ │ │ └── movingWallVelocityFvPatchVectorField.hxx │ │ │ │ ├── noSlip │ │ │ │ │ ├── noSlipFvPatchVectorField.cxx │ │ │ │ │ └── noSlipFvPatchVectorField.hxx │ │ │ │ ├── outletInlet │ │ │ │ │ ├── outletInletFvPatchField.cxx-backup │ │ │ │ │ ├── outletInletFvPatchField.hxx │ │ │ │ │ ├── outletInletFvPatchFieldI.hxx │ │ │ │ │ ├── outletInletFvPatchFields.cxx │ │ │ │ │ ├── outletInletFvPatchFields.hxx │ │ │ │ │ └── outletInletFvPatchFieldsFwd.hxx │ │ │ │ ├── outletMappedUniformInlet │ │ │ │ │ ├── outletMappedUniformInletFvPatchField.cxx-backup │ │ │ │ │ ├── outletMappedUniformInletFvPatchField.hxx │ │ │ │ │ ├── outletMappedUniformInletFvPatchFieldI.hxx │ │ │ │ │ ├── outletMappedUniformInletFvPatchFields.cxx │ │ │ │ │ ├── outletMappedUniformInletFvPatchFields.hxx │ │ │ │ │ └── outletMappedUniformInletFvPatchFieldsFwd.hxx │ │ │ │ ├── outletPhaseMeanVelocity │ │ │ │ │ ├── outletPhaseMeanVelocityFvPatchVectorField.cxx │ │ │ │ │ └── outletPhaseMeanVelocityFvPatchVectorField.hxx │ │ │ │ ├── partialSlip │ │ │ │ │ ├── partialSlipFvPatchField.cxx-backup │ │ │ │ │ ├── partialSlipFvPatchField.hxx │ │ │ │ │ ├── partialSlipFvPatchFieldI.hxx │ │ │ │ │ ├── partialSlipFvPatchFields.cxx │ │ │ │ │ ├── partialSlipFvPatchFields.hxx │ │ │ │ │ └── partialSlipFvPatchFieldsFwd.hxx │ │ │ │ ├── phaseHydrostaticPressure │ │ │ │ │ ├── phaseHydrostaticPressureFvPatchScalarField.cxx │ │ │ │ │ └── phaseHydrostaticPressureFvPatchScalarField.hxx │ │ │ │ ├── plenumPressure │ │ │ │ │ ├── plenumPressureFvPatchScalarField.cxx │ │ │ │ │ └── plenumPressureFvPatchScalarField.hxx │ │ │ │ ├── pressure │ │ │ │ │ ├── pressureFvPatchScalarField.cxx │ │ │ │ │ └── pressureFvPatchScalarField.hxx │ │ │ │ ├── pressureDirectedInletOutletVelocity │ │ │ │ │ ├── pressureDirectedInletOutletVelocityFvPatchVectorField.cxx │ │ │ │ │ └── pressureDirectedInletOutletVelocityFvPatchVectorField.hxx │ │ │ │ ├── pressureDirectedInletVelocity │ │ │ │ │ ├── pressureDirectedInletVelocityFvPatchVectorField.cxx │ │ │ │ │ └── pressureDirectedInletVelocityFvPatchVectorField.hxx │ │ │ │ ├── pressureInletOutletParSlipVelocity │ │ │ │ │ ├── pressureInletOutletParSlipVelocityFvPatchVectorField.cxx │ │ │ │ │ └── pressureInletOutletParSlipVelocityFvPatchVectorField.hxx │ │ │ │ ├── pressureInletOutletVelocity │ │ │ │ │ ├── pressureInletOutletVelocityFvPatchVectorField.cxx │ │ │ │ │ └── pressureInletOutletVelocityFvPatchVectorField.hxx │ │ │ │ ├── pressureInletUniformVelocity │ │ │ │ │ ├── pressureInletUniformVelocityFvPatchVectorField.cxx │ │ │ │ │ └── pressureInletUniformVelocityFvPatchVectorField.hxx │ │ │ │ ├── pressureInletVelocity │ │ │ │ │ ├── pressureInletVelocityFvPatchVectorField.cxx │ │ │ │ │ └── pressureInletVelocityFvPatchVectorField.hxx │ │ │ │ ├── pressureNormalInletOutletVelocity │ │ │ │ │ ├── pressureNormalInletOutletVelocityFvPatchVectorField.cxx │ │ │ │ │ └── pressureNormalInletOutletVelocityFvPatchVectorField.hxx │ │ │ │ ├── prghTotalHydrostaticPressure │ │ │ │ │ ├── prghTotalHydrostaticPressureFvPatchScalarField.cxx │ │ │ │ │ └── prghTotalHydrostaticPressureFvPatchScalarField.hxx │ │ │ │ ├── rotatingPressureInletOutletVelocity │ │ │ │ │ ├── rotatingPressureInletOutletVelocityFvPatchVectorField.cxx │ │ │ │ │ └── rotatingPressureInletOutletVelocityFvPatchVectorField.hxx │ │ │ │ ├── rotatingTotalPressure │ │ │ │ │ ├── rotatingTotalPressureFvPatchScalarField.cxx │ │ │ │ │ └── rotatingTotalPressureFvPatchScalarField.hxx │ │ │ │ ├── rotatingWallVelocity │ │ │ │ │ ├── rotatingWallVelocityFvPatchVectorField.cxx │ │ │ │ │ └── rotatingWallVelocityFvPatchVectorField.hxx │ │ │ │ ├── slip │ │ │ │ │ ├── slipFvPatchField.cxx-backup │ │ │ │ │ ├── slipFvPatchField.hxx │ │ │ │ │ ├── slipFvPatchFieldI.hxx │ │ │ │ │ ├── slipFvPatchFields.cxx │ │ │ │ │ ├── slipFvPatchFields.hxx │ │ │ │ │ └── slipFvPatchFieldsFwd.hxx │ │ │ │ ├── supersonicFreestream │ │ │ │ │ ├── supersonicFreestreamFvPatchVectorField.cxx │ │ │ │ │ └── supersonicFreestreamFvPatchVectorField.hxx │ │ │ │ ├── surfaceNormalFixedValue │ │ │ │ │ ├── surfaceNormalFixedValueFvPatchVectorField.cxx │ │ │ │ │ └── surfaceNormalFixedValueFvPatchVectorField.hxx │ │ │ │ ├── surfaceNormalUniformFixedValue │ │ │ │ │ ├── surfaceNormalUniformFixedValueFvPatchVectorField.cxx │ │ │ │ │ └── surfaceNormalUniformFixedValueFvPatchVectorField.hxx │ │ │ │ ├── swirlFlowRateInletVelocity │ │ │ │ │ ├── swirlFlowRateInletVelocityFvPatchVectorField.cxx │ │ │ │ │ └── swirlFlowRateInletVelocityFvPatchVectorField.hxx │ │ │ │ ├── swirlInletVelocity │ │ │ │ │ ├── swirlInletVelocityFvPatchVectorField.cxx │ │ │ │ │ └── swirlInletVelocityFvPatchVectorField.hxx │ │ │ │ ├── syringePressure │ │ │ │ │ ├── syringePressureFvPatchScalarField.cxx │ │ │ │ │ └── syringePressureFvPatchScalarField.hxx │ │ │ │ ├── timeVaryingMappedFixedValue │ │ │ │ │ ├── timeVaryingMappedFixedValueFvPatchField.cxx-backup │ │ │ │ │ ├── timeVaryingMappedFixedValueFvPatchField.hxx │ │ │ │ │ ├── timeVaryingMappedFixedValueFvPatchFieldI.hxx │ │ │ │ │ ├── timeVaryingMappedFixedValueFvPatchFields.cxx │ │ │ │ │ ├── timeVaryingMappedFixedValueFvPatchFields.hxx │ │ │ │ │ ├── timeVaryingMappedFixedValueFvPatchFieldsFwd.hxx │ │ │ │ │ └── timeVaryingMappedFvPatchField │ │ │ │ │ │ ├── AverageField.cxx-backup │ │ │ │ │ │ ├── AverageField.hxx │ │ │ │ │ │ ├── AverageFieldI.hxx │ │ │ │ │ │ ├── timeVaryingMapped.cxx │ │ │ │ │ │ ├── timeVaryingMappedFvPatchField.cxx-backup │ │ │ │ │ │ ├── timeVaryingMappedFvPatchField.hxx │ │ │ │ │ │ └── timeVaryingMappedFvPatchFieldI.hxx │ │ │ │ ├── totalPressure │ │ │ │ │ ├── totalPressureFvPatchScalarField.cxx │ │ │ │ │ └── totalPressureFvPatchScalarField.hxx │ │ │ │ ├── totalTemperature │ │ │ │ │ ├── totalTemperatureFvPatchScalarField.cxx │ │ │ │ │ └── totalTemperatureFvPatchScalarField.hxx │ │ │ │ ├── translatingWallVelocity │ │ │ │ │ ├── translatingWallVelocityFvPatchVectorField.cxx │ │ │ │ │ └── translatingWallVelocityFvPatchVectorField.hxx │ │ │ │ ├── turbulentInlet │ │ │ │ │ ├── turbulentInletFvPatchField.cxx-backup │ │ │ │ │ ├── turbulentInletFvPatchField.hxx │ │ │ │ │ ├── turbulentInletFvPatchFieldI.hxx │ │ │ │ │ ├── turbulentInletFvPatchFields.cxx │ │ │ │ │ ├── turbulentInletFvPatchFields.hxx │ │ │ │ │ └── turbulentInletFvPatchFieldsFwd.hxx │ │ │ │ ├── turbulentIntensityKineticEnergyInlet │ │ │ │ │ ├── turbulentIntensityKineticEnergyInletFvPatchScalarField.cxx │ │ │ │ │ └── turbulentIntensityKineticEnergyInletFvPatchScalarField.hxx │ │ │ │ ├── uniformDensityHydrostaticPressure │ │ │ │ │ ├── uniformDensityHydrostaticPressureFvPatchScalarField.cxx │ │ │ │ │ └── uniformDensityHydrostaticPressureFvPatchScalarField.hxx │ │ │ │ ├── uniformFixedGradient │ │ │ │ │ ├── uniformFixedGradientFvPatchField.cxx-backup │ │ │ │ │ ├── uniformFixedGradientFvPatchField.hxx │ │ │ │ │ ├── uniformFixedGradientFvPatchFieldI.hxx │ │ │ │ │ ├── uniformFixedGradientFvPatchFields.cxx │ │ │ │ │ ├── uniformFixedGradientFvPatchFields.hxx │ │ │ │ │ └── uniformFixedGradientFvPatchFieldsFwd.hxx │ │ │ │ ├── uniformFixedValue │ │ │ │ │ ├── uniformFixedValueFvPatchField.cxx-backup │ │ │ │ │ ├── uniformFixedValueFvPatchField.hxx │ │ │ │ │ ├── uniformFixedValueFvPatchFieldI.hxx │ │ │ │ │ ├── uniformFixedValueFvPatchFields.cxx │ │ │ │ │ ├── uniformFixedValueFvPatchFields.hxx │ │ │ │ │ └── uniformFixedValueFvPatchFieldsFwd.hxx │ │ │ │ ├── uniformInletOutlet │ │ │ │ │ ├── uniformInletOutletFvPatchField.cxx-backup │ │ │ │ │ ├── uniformInletOutletFvPatchField.hxx │ │ │ │ │ ├── uniformInletOutletFvPatchFieldI.hxx │ │ │ │ │ ├── uniformInletOutletFvPatchFields.cxx │ │ │ │ │ ├── uniformInletOutletFvPatchFields.hxx │ │ │ │ │ └── uniformInletOutletFvPatchFieldsFwd.hxx │ │ │ │ ├── uniformJump │ │ │ │ │ ├── uniformJumpFvPatchField.cxx-backup │ │ │ │ │ ├── uniformJumpFvPatchField.hxx │ │ │ │ │ ├── uniformJumpFvPatchFieldI.hxx │ │ │ │ │ ├── uniformJumpFvPatchFields.cxx │ │ │ │ │ ├── uniformJumpFvPatchFields.hxx │ │ │ │ │ └── uniformJumpFvPatchFieldsFwd.hxx │ │ │ │ ├── uniformJumpAMI │ │ │ │ │ ├── uniformJumpAMIFvPatchField.cxx-backup │ │ │ │ │ ├── uniformJumpAMIFvPatchField.hxx │ │ │ │ │ ├── uniformJumpAMIFvPatchFieldI.hxx │ │ │ │ │ ├── uniformJumpAMIFvPatchFields.cxx │ │ │ │ │ ├── uniformJumpAMIFvPatchFields.hxx │ │ │ │ │ └── uniformJumpAMIFvPatchFieldsFwd.hxx │ │ │ │ ├── uniformTotalPressure │ │ │ │ │ ├── uniformTotalPressureFvPatchScalarField.cxx │ │ │ │ │ └── uniformTotalPressureFvPatchScalarField.hxx │ │ │ │ ├── variableHeightFlowRate │ │ │ │ │ ├── variableHeightFlowRateFvPatchField.cxx │ │ │ │ │ └── variableHeightFlowRateFvPatchField.hxx │ │ │ │ ├── variableHeightFlowRateInletVelocity │ │ │ │ │ ├── variableHeightFlowRateInletVelocityFvPatchVectorField.cxx │ │ │ │ │ └── variableHeightFlowRateInletVelocityFvPatchVectorField.hxx │ │ │ │ ├── waveSurfacePressure │ │ │ │ │ ├── waveSurfacePressureFvPatchScalarField.cxx │ │ │ │ │ └── waveSurfacePressureFvPatchScalarField.hxx │ │ │ │ └── waveTransmissive │ │ │ │ │ ├── waveTransmissiveFvPatchField.cxx-backup │ │ │ │ │ ├── waveTransmissiveFvPatchField.hxx │ │ │ │ │ ├── waveTransmissiveFvPatchFieldI.hxx │ │ │ │ │ ├── waveTransmissiveFvPatchFields.cxx │ │ │ │ │ ├── waveTransmissiveFvPatchFields.hxx │ │ │ │ │ └── waveTransmissiveFvPatchFieldsFwd.hxx │ │ │ └── fvPatchField │ │ │ │ ├── directFvPatchFieldMapper.hxx │ │ │ │ ├── fvPatchField.cxx-backup │ │ │ │ ├── fvPatchField.hxx │ │ │ │ ├── fvPatchFieldI.hxx │ │ │ │ ├── fvPatchFieldMapper.hxx │ │ │ │ ├── fvPatchFieldNew.cxx-backup │ │ │ │ ├── fvPatchFieldNew_Imp.hxx │ │ │ │ ├── fvPatchFields.cxx │ │ │ │ ├── fvPatchFields.hxx │ │ │ │ └── fvPatchFieldsFwd.hxx │ │ ├── fvsPatchFields │ │ │ ├── basic │ │ │ │ ├── calculated │ │ │ │ │ ├── calculatedFvsPatchField.cxx-backup │ │ │ │ │ ├── calculatedFvsPatchField.hxx │ │ │ │ │ ├── calculatedFvsPatchFieldI.hxx │ │ │ │ │ ├── calculatedFvsPatchFields.cxx │ │ │ │ │ ├── calculatedFvsPatchFields.hxx │ │ │ │ │ └── calculatedFvsPatchFieldsFwd.hxx │ │ │ │ ├── coupled │ │ │ │ │ ├── coupledFvsPatchField.cxx-backup │ │ │ │ │ ├── coupledFvsPatchField.hxx │ │ │ │ │ ├── coupledFvsPatchFieldI.hxx │ │ │ │ │ ├── coupledFvsPatchFields.cxx │ │ │ │ │ ├── coupledFvsPatchFields.hxx │ │ │ │ │ └── coupledFvsPatchFieldsFwd.hxx │ │ │ │ ├── fixedValue │ │ │ │ │ ├── fixedValueFvsPatchField.cxx-backup │ │ │ │ │ ├── fixedValueFvsPatchField.hxx │ │ │ │ │ ├── fixedValueFvsPatchFieldI.hxx │ │ │ │ │ ├── fixedValueFvsPatchFields.cxx │ │ │ │ │ ├── fixedValueFvsPatchFields.hxx │ │ │ │ │ └── fixedValueFvsPatchFieldsFwd.hxx │ │ │ │ └── sliced │ │ │ │ │ ├── slicedFvsPatchField.cxx-backup │ │ │ │ │ ├── slicedFvsPatchField.hxx │ │ │ │ │ ├── slicedFvsPatchFieldI.hxx │ │ │ │ │ ├── slicedFvsPatchFields.cxx │ │ │ │ │ ├── slicedFvsPatchFields.hxx │ │ │ │ │ └── slicedFvsPatchFieldsFwd.hxx │ │ │ ├── constraint │ │ │ │ ├── cyclic │ │ │ │ │ ├── cyclicFvsPatchField.cxx-backup │ │ │ │ │ ├── cyclicFvsPatchField.hxx │ │ │ │ │ ├── cyclicFvsPatchFieldI.hxx │ │ │ │ │ ├── cyclicFvsPatchFields.cxx │ │ │ │ │ ├── cyclicFvsPatchFields.hxx │ │ │ │ │ └── cyclicFvsPatchFieldsFwd.hxx │ │ │ │ ├── cyclicACMI │ │ │ │ │ ├── cyclicACMIFvsPatchField.hxx │ │ │ │ │ ├── cyclicACMIFvsPatchFields.cxx │ │ │ │ │ ├── cyclicACMIFvsPatchFields.hxx │ │ │ │ │ └── cyclicACMIFvsPatchFieldsFwd.hxx │ │ │ │ ├── cyclicAMI │ │ │ │ │ ├── cyclicAMIFvsPatchField.cxx-backup │ │ │ │ │ ├── cyclicAMIFvsPatchField.hxx │ │ │ │ │ ├── cyclicAMIFvsPatchFieldI.hxx │ │ │ │ │ ├── cyclicAMIFvsPatchFields.cxx │ │ │ │ │ ├── cyclicAMIFvsPatchFields.hxx │ │ │ │ │ └── cyclicAMIFvsPatchFieldsFwd.hxx │ │ │ │ ├── cyclicRepeatAMI │ │ │ │ │ ├── cyclicRepeatAMIFvsPatchField.hxx │ │ │ │ │ ├── cyclicRepeatAMIFvsPatchFields.cxx │ │ │ │ │ ├── cyclicRepeatAMIFvsPatchFields.hxx │ │ │ │ │ └── cyclicRepeatAMIFvsPatchFieldsFwd.hxx │ │ │ │ ├── cyclicSlip │ │ │ │ │ ├── cyclicSlipFvsPatchField.cxx-backup │ │ │ │ │ ├── cyclicSlipFvsPatchField.hxx │ │ │ │ │ ├── cyclicSlipFvsPatchFieldI.hxx │ │ │ │ │ ├── cyclicSlipFvsPatchFields.cxx │ │ │ │ │ ├── cyclicSlipFvsPatchFields.hxx │ │ │ │ │ └── cyclicSlipFvsPatchFieldsFwd.hxx │ │ │ │ ├── empty │ │ │ │ │ ├── emptyFvsPatchField.cxx-backup │ │ │ │ │ ├── emptyFvsPatchField.hxx │ │ │ │ │ ├── emptyFvsPatchFieldI.hxx │ │ │ │ │ ├── emptyFvsPatchFields.cxx │ │ │ │ │ ├── emptyFvsPatchFields.hxx │ │ │ │ │ └── emptyFvsPatchFieldsFwd.hxx │ │ │ │ ├── nonuniformTransformCyclic │ │ │ │ │ ├── nonuniformTransformCyclicFvsPatchField.cxx-backup │ │ │ │ │ ├── nonuniformTransformCyclicFvsPatchField.hxx │ │ │ │ │ ├── nonuniformTransformCyclicFvsPatchFieldI.hxx │ │ │ │ │ ├── nonuniformTransformCyclicFvsPatchFields.cxx │ │ │ │ │ ├── nonuniformTransformCyclicFvsPatchFields.hxx │ │ │ │ │ └── nonuniformTransformCyclicFvsPatchFieldsFwd.hxx │ │ │ │ ├── processor │ │ │ │ │ ├── processorFvsPatchField.cxx-backup │ │ │ │ │ ├── processorFvsPatchField.hxx │ │ │ │ │ ├── processorFvsPatchFieldI.hxx │ │ │ │ │ ├── processorFvsPatchFields.cxx │ │ │ │ │ ├── processorFvsPatchFields.hxx │ │ │ │ │ └── processorFvsPatchFieldsFwd.hxx │ │ │ │ ├── processorCyclic │ │ │ │ │ ├── processorCyclicFvsPatchField.cxx-backup │ │ │ │ │ ├── processorCyclicFvsPatchField.hxx │ │ │ │ │ ├── processorCyclicFvsPatchFieldI.hxx │ │ │ │ │ ├── processorCyclicFvsPatchFields.cxx │ │ │ │ │ ├── processorCyclicFvsPatchFields.hxx │ │ │ │ │ └── processorCyclicFvsPatchFieldsFwd.hxx │ │ │ │ ├── symmetry │ │ │ │ │ ├── symmetryFvsPatchField.cxx-backup │ │ │ │ │ ├── symmetryFvsPatchField.hxx │ │ │ │ │ ├── symmetryFvsPatchFieldI.hxx │ │ │ │ │ ├── symmetryFvsPatchFields.cxx │ │ │ │ │ ├── symmetryFvsPatchFields.hxx │ │ │ │ │ └── symmetryFvsPatchFieldsFwd.hxx │ │ │ │ ├── symmetryPlane │ │ │ │ │ ├── symmetryPlaneFvsPatchField.cxx-backup │ │ │ │ │ ├── symmetryPlaneFvsPatchField.hxx │ │ │ │ │ ├── symmetryPlaneFvsPatchFieldI.hxx │ │ │ │ │ ├── symmetryPlaneFvsPatchFields.cxx │ │ │ │ │ ├── symmetryPlaneFvsPatchFields.hxx │ │ │ │ │ └── symmetryPlaneFvsPatchFieldsFwd.hxx │ │ │ │ └── wedge │ │ │ │ │ ├── wedgeFvsPatchField.cxx-backup │ │ │ │ │ ├── wedgeFvsPatchField.hxx │ │ │ │ │ ├── wedgeFvsPatchFieldI.hxx │ │ │ │ │ ├── wedgeFvsPatchFields.cxx │ │ │ │ │ ├── wedgeFvsPatchFields.hxx │ │ │ │ │ └── wedgeFvsPatchFieldsFwd.hxx │ │ │ └── fvsPatchField │ │ │ │ ├── fvsPatchField.cxx-backup │ │ │ │ ├── fvsPatchField.hxx │ │ │ │ ├── fvsPatchFieldI.hxx │ │ │ │ ├── fvsPatchFieldNew.cxx-backup │ │ │ │ ├── fvsPatchFieldNew_Imp.hxx │ │ │ │ ├── fvsPatchFields.cxx │ │ │ │ ├── fvsPatchFields.hxx │ │ │ │ └── fvsPatchFieldsFwd.hxx │ │ ├── surfaceFields │ │ │ ├── slicedSurfaceFields.hxx │ │ │ ├── slicedSurfaceFieldsFwd.hxx │ │ │ ├── surfaceFields.cxx │ │ │ ├── surfaceFields.hxx │ │ │ └── surfaceFieldsFwd.hxx │ │ └── volFields │ │ │ ├── slicedVolFields.hxx │ │ │ ├── slicedVolFieldsFwd.hxx │ │ │ ├── volFields.cxx │ │ │ ├── volFields.hxx │ │ │ ├── volFieldsFwd.hxx │ │ │ └── volFieldsI.hxx │ │ ├── finiteVolume │ │ ├── convectionSchemes │ │ │ ├── boundedConvectionScheme │ │ │ │ ├── boundedConvectionScheme.cxx-backup │ │ │ │ ├── boundedConvectionScheme.hxx │ │ │ │ ├── boundedConvectionSchemeI.hxx │ │ │ │ └── boundedConvectionSchemes.cxx │ │ │ ├── convectionScheme │ │ │ │ ├── convectionScheme.cxx-backup │ │ │ │ ├── convectionScheme.hxx │ │ │ │ ├── convectionSchemeI.hxx │ │ │ │ └── convectionSchemes.cxx │ │ │ ├── gaussConvectionScheme │ │ │ │ ├── gaussConvectionScheme.cxx-backup │ │ │ │ ├── gaussConvectionScheme.hxx │ │ │ │ ├── gaussConvectionSchemeI.hxx │ │ │ │ └── gaussConvectionSchemes.cxx │ │ │ └── multivariateGaussConvectionScheme │ │ │ │ ├── multivariateGaussConvectionScheme.cxx-backup │ │ │ │ ├── multivariateGaussConvectionScheme.hxx │ │ │ │ ├── multivariateGaussConvectionSchemeI.hxx │ │ │ │ └── multivariateGaussConvectionSchemes.cxx │ │ ├── d2dt2Schemes │ │ │ ├── EulerD2dt2Scheme │ │ │ │ ├── EulerD2dt2Scheme.cxx-backup │ │ │ │ ├── EulerD2dt2Scheme.hxx │ │ │ │ ├── EulerD2dt2SchemeI.hxx │ │ │ │ └── EulerD2dt2Schemes.cxx │ │ │ ├── d2dt2Scheme │ │ │ │ ├── d2dt2Scheme.cxx-backup │ │ │ │ ├── d2dt2Scheme.hxx │ │ │ │ ├── d2dt2SchemeI.hxx │ │ │ │ └── d2dt2Schemes.cxx │ │ │ └── steadyStateD2dt2Scheme │ │ │ │ ├── steadyStateD2dt2Scheme.cxx-backup │ │ │ │ ├── steadyStateD2dt2Scheme.hxx │ │ │ │ ├── steadyStateD2dt2SchemeI.hxx │ │ │ │ └── steadyStateD2dt2Schemes.cxx │ │ ├── ddtSchemes │ │ │ ├── CoEulerDdtScheme │ │ │ │ ├── CoEulerDdtScheme.cxx-backup │ │ │ │ ├── CoEulerDdtScheme.hxx │ │ │ │ ├── CoEulerDdtSchemeI.hxx │ │ │ │ └── CoEulerDdtSchemes.cxx │ │ │ ├── CrankNicolsonDdtScheme │ │ │ │ ├── CrankNicolsonDdtScheme.cxx-backup │ │ │ │ ├── CrankNicolsonDdtScheme.hxx │ │ │ │ ├── CrankNicolsonDdtSchemeI.hxx │ │ │ │ └── CrankNicolsonDdtSchemes.cxx │ │ │ ├── EulerDdtScheme │ │ │ │ ├── EulerDdtScheme.cxx-backup │ │ │ │ ├── EulerDdtScheme.hxx │ │ │ │ ├── EulerDdtSchemeI.hxx │ │ │ │ └── EulerDdtSchemes.cxx │ │ │ ├── SLTSDdtScheme │ │ │ │ ├── SLTSDdtScheme.cxx-backup │ │ │ │ ├── SLTSDdtScheme.hxx │ │ │ │ ├── SLTSDdtSchemeI.hxx │ │ │ │ └── SLTSDdtSchemes.cxx │ │ │ ├── backwardDdtScheme │ │ │ │ ├── backwardDdtScheme.cxx-backup │ │ │ │ ├── backwardDdtScheme.hxx │ │ │ │ ├── backwardDdtSchemeI.hxx │ │ │ │ └── backwardDdtSchemes.cxx │ │ │ ├── boundedDdtScheme │ │ │ │ ├── boundedDdtScheme.cxx-backup │ │ │ │ ├── boundedDdtScheme.hxx │ │ │ │ ├── boundedDdtSchemeI.hxx │ │ │ │ └── boundedDdtSchemes.cxx │ │ │ ├── ddtScheme │ │ │ │ ├── ddtScheme.cxx-backup │ │ │ │ ├── ddtScheme.hxx │ │ │ │ ├── ddtSchemeI.hxx │ │ │ │ └── ddtSchemes.cxx │ │ │ ├── localEulerDdtScheme │ │ │ │ ├── localEulerDdt.cxx │ │ │ │ ├── localEulerDdtScheme.cxx-backup │ │ │ │ ├── localEulerDdtScheme.hxx │ │ │ │ ├── localEulerDdtSchemeI.hxx │ │ │ │ └── localEulerDdtSchemes.cxx │ │ │ └── steadyStateDdtScheme │ │ │ │ ├── steadyStateDdtScheme.cxx-backup │ │ │ │ ├── steadyStateDdtScheme.hxx │ │ │ │ ├── steadyStateDdtSchemeI.hxx │ │ │ │ └── steadyStateDdtSchemes.cxx │ │ ├── divSchemes │ │ │ ├── divScheme │ │ │ │ ├── divScheme.cxx-backup │ │ │ │ ├── divScheme.hxx │ │ │ │ ├── divSchemeI.hxx │ │ │ │ └── divSchemes.cxx │ │ │ └── gaussDivScheme │ │ │ │ ├── gaussDivScheme.cxx-backup │ │ │ │ ├── gaussDivScheme.hxx │ │ │ │ ├── gaussDivSchemeI.hxx │ │ │ │ └── gaussDivSchemes.cxx │ │ ├── fv │ │ │ ├── fv.cxx │ │ │ └── fv.hxx │ │ ├── fvSchemes │ │ │ ├── fvSchemes.cxx │ │ │ └── fvSchemes.hxx │ │ ├── fvSolution │ │ │ └── fvSolution.hxx │ │ ├── fvc │ │ │ ├── fvc.hxx │ │ │ ├── fvcAverage.cxx-backup │ │ │ ├── fvcAverage.hxx │ │ │ ├── fvcAverageI.hxx │ │ │ ├── fvcCellReduce.cxx-backup │ │ │ ├── fvcCellReduce.hxx │ │ │ ├── fvcCellReduceI.hxx │ │ │ ├── fvcCurl.cxx-backup │ │ │ ├── fvcCurl.hxx │ │ │ ├── fvcCurlI.hxx │ │ │ ├── fvcD2dt2.cxx-backup │ │ │ ├── fvcD2dt2.hxx │ │ │ ├── fvcD2dt2I.hxx │ │ │ ├── fvcDDtTemplate.cxx-backup │ │ │ ├── fvcDDtTemplate.hxx │ │ │ ├── fvcDDtTemplateI.hxx │ │ │ ├── fvcDdt.cxx-backup │ │ │ ├── fvcDdt.hxx │ │ │ ├── fvcDdtI.hxx │ │ │ ├── fvcDiv.cxx-backup │ │ │ ├── fvcDiv.hxx │ │ │ ├── fvcDivI.hxx │ │ │ ├── fvcFlux.cxx │ │ │ ├── fvcFlux.hxx │ │ │ ├── fvcFluxI.hxx │ │ │ ├── fvcFluxTemplates.cxx-backup │ │ │ ├── fvcGrad.cxx-backup │ │ │ ├── fvcGrad.hxx │ │ │ ├── fvcGradI.hxx │ │ │ ├── fvcLaplacian.cxx-backup │ │ │ ├── fvcLaplacian.hxx │ │ │ ├── fvcLaplacianI.hxx │ │ │ ├── fvcMagSqrGradGrad.cxx-backup │ │ │ ├── fvcMagSqrGradGrad.hxx │ │ │ ├── fvcMagSqrGradGradI.hxx │ │ │ ├── fvcMeshPhi.cxx │ │ │ ├── fvcMeshPhi.hxx │ │ │ ├── fvcReconstruct.cxx-backup │ │ │ ├── fvcReconstruct.hxx │ │ │ ├── fvcReconstructI.hxx │ │ │ ├── fvcReconstructMag.cxx │ │ │ ├── fvcSimpleReconstruct.cxx-backup │ │ │ ├── fvcSimpleReconstruct_Imp.hxx │ │ │ ├── fvcSmooth │ │ │ │ ├── fvcSmooth.cxx │ │ │ │ ├── fvcSmooth.hxx │ │ │ │ ├── smoothData.hxx │ │ │ │ ├── smoothDataI.hxx │ │ │ │ ├── sweepData.hxx │ │ │ │ └── sweepDataI.hxx │ │ │ ├── fvcSnGrad.cxx-backup │ │ │ ├── fvcSnGrad.hxx │ │ │ ├── fvcSnGradI.hxx │ │ │ ├── fvcSup.cxx-backup │ │ │ ├── fvcSup.hxx │ │ │ ├── fvcSupI.hxx │ │ │ ├── fvcSurfaceIntegrate.cxx-backup │ │ │ ├── fvcSurfaceIntegrate.hxx │ │ │ ├── fvcSurfaceIntegrateI.hxx │ │ │ ├── fvcVolumeIntegrate.cxx-backup │ │ │ ├── fvcVolumeIntegrate.hxx │ │ │ └── fvcVolumeIntegrateI.hxx │ │ ├── fvm │ │ │ ├── fvm.hxx │ │ │ ├── fvmD2dt2.cxx-backup │ │ │ ├── fvmD2dt2.hxx │ │ │ ├── fvmD2dt2I.hxx │ │ │ ├── fvmDdt.cxx-backup │ │ │ ├── fvmDdt.hxx │ │ │ ├── fvmDdtI.hxx │ │ │ ├── fvmDiv.cxx-backup │ │ │ ├── fvmDiv.hxx │ │ │ ├── fvmDivI.hxx │ │ │ ├── fvmLaplacian.cxx-backup │ │ │ ├── fvmLaplacian.hxx │ │ │ ├── fvmLaplacianI.hxx │ │ │ ├── fvmSup.cxx-backup │ │ │ ├── fvmSup.hxx │ │ │ └── fvmSupI.hxx │ │ ├── gradSchemes │ │ │ ├── LeastSquaresGrad │ │ │ │ ├── LeastSquaresGradTemplate.cxx-backup │ │ │ │ ├── LeastSquaresGradTemplate.hxx │ │ │ │ ├── LeastSquaresGradTemplateI.hxx │ │ │ │ ├── LeastSquaresGradsTemplate.cxx │ │ │ │ ├── LeastSquaresVectorsTemplate.cxx-backup │ │ │ │ ├── LeastSquaresVectorsTemplate.hxx │ │ │ │ ├── LeastSquaresVectorsTemplateI.hxx │ │ │ │ ├── invDistLeastSquaresVectors.cxx │ │ │ │ ├── leastSquaresGrad.cxx-backup │ │ │ │ ├── leastSquaresGrad.hxx │ │ │ │ ├── leastSquaresGradI.hxx │ │ │ │ ├── leastSquaresGrads.cxx │ │ │ │ ├── leastSquaresVectors.cxx │ │ │ │ ├── leastSquaresVectors.hxx │ │ │ │ └── unweightedLeastSquaresVectors.cxx │ │ │ ├── fourthGrad │ │ │ │ ├── fourthGrad.cxx-backup │ │ │ │ ├── fourthGrad.hxx │ │ │ │ ├── fourthGradI.hxx │ │ │ │ └── fourthGrads.cxx │ │ │ ├── gaussGrad │ │ │ │ ├── gaussGrad.cxx-backup │ │ │ │ ├── gaussGrad.hxx │ │ │ │ ├── gaussGradI.hxx │ │ │ │ └── gaussGrads.cxx │ │ │ ├── gradScheme │ │ │ │ ├── gradScheme.cxx-backup │ │ │ │ ├── gradScheme.hxx │ │ │ │ ├── gradSchemeI.hxx │ │ │ │ └── gradSchemes.cxx │ │ │ └── limitedGradSchemes │ │ │ │ ├── cellLimitedGrad │ │ │ │ ├── cellLimitedGrad.cxx-backup │ │ │ │ ├── cellLimitedGrad.hxx │ │ │ │ ├── cellLimitedGradI.hxx │ │ │ │ ├── cellLimitedGrads.cxx │ │ │ │ └── gradientLimiters │ │ │ │ │ ├── VenkatakrishnanGradientLimiter.hxx │ │ │ │ │ ├── cubicGradientLimiter.hxx │ │ │ │ │ └── minmodGradientLimiter.hxx │ │ │ │ ├── cellMDLimitedGrad │ │ │ │ ├── cellMDLimitedGrad.hxx │ │ │ │ └── cellMDLimitedGrads.cxx │ │ │ │ ├── faceLimitedGrad │ │ │ │ ├── faceLimitedGrad.hxx │ │ │ │ └── faceLimitedGrads.cxx │ │ │ │ └── faceMDLimitedGrad │ │ │ │ ├── faceMDLimitedGrad.hxx │ │ │ │ └── faceMDLimitedGrads.cxx │ │ ├── laplacianSchemes │ │ │ ├── gaussLaplacianScheme │ │ │ │ ├── gaussLaplacianScheme.cxx-backup │ │ │ │ ├── gaussLaplacianScheme.hxx │ │ │ │ ├── gaussLaplacianSchemeI.hxx │ │ │ │ └── gaussLaplacianSchemes.cxx │ │ │ └── laplacianScheme │ │ │ │ ├── laplacianScheme.cxx-backup │ │ │ │ ├── laplacianScheme.hxx │ │ │ │ ├── laplacianSchemeI.hxx │ │ │ │ └── laplacianSchemes.cxx │ │ └── snGradSchemes │ │ │ ├── CentredFitSnGrad │ │ │ ├── CentredFitSnGradData.cxx-backup │ │ │ ├── CentredFitSnGradData.hxx │ │ │ ├── CentredFitSnGradDataI.hxx │ │ │ └── CentredFitSnGradScheme.hxx │ │ │ ├── correctedSnGrad │ │ │ ├── correctedSnGrad.cxx-backup │ │ │ ├── correctedSnGrad.hxx │ │ │ ├── correctedSnGradI.hxx │ │ │ └── correctedSnGrads.cxx │ │ │ ├── faceCorrectedSnGrad │ │ │ ├── faceCorrectedSnGrad.cxx-backup │ │ │ ├── faceCorrectedSnGrad.hxx │ │ │ ├── faceCorrectedSnGradI.hxx │ │ │ └── faceCorrectedSnGrads.cxx │ │ │ ├── limitedSnGrad │ │ │ ├── limitedSnGrad.cxx-backup │ │ │ ├── limitedSnGrad.hxx │ │ │ ├── limitedSnGradI.hxx │ │ │ └── limitedSnGrads.cxx │ │ │ ├── linearFitSnGrad │ │ │ └── linearFitSnGrads.cxx │ │ │ ├── orthogonalSnGrad │ │ │ ├── orthogonalSnGrad.cxx-backup │ │ │ ├── orthogonalSnGrad.hxx │ │ │ ├── orthogonalSnGradI.hxx │ │ │ └── orthogonalSnGrads.cxx │ │ │ ├── quadraticFitSnGrad │ │ │ └── quadraticFitSnGrads.cxx │ │ │ ├── snGradScheme │ │ │ ├── snGradScheme.cxx-backup │ │ │ ├── snGradScheme.hxx │ │ │ ├── snGradSchemeI.hxx │ │ │ └── snGradSchemes.cxx │ │ │ └── uncorrectedSnGrad │ │ │ ├── uncorrectedSnGrad.cxx-backup │ │ │ ├── uncorrectedSnGrad.hxx │ │ │ ├── uncorrectedSnGradI.hxx │ │ │ └── uncorrectedSnGrads.cxx │ │ ├── functionObjects │ │ ├── fvMeshFunctionObject │ │ │ ├── fvMeshFunctionObject.cxx │ │ │ └── fvMeshFunctionObject.hxx │ │ └── volRegion │ │ │ ├── volRegion.cxx │ │ │ ├── volRegion.hxx │ │ │ └── volRegionI.hxx │ │ ├── fvMatrices │ │ ├── fvMatrices.cxx │ │ ├── fvMatrices.hxx │ │ ├── fvMatricesFwd.hxx │ │ ├── fvMatrix │ │ │ ├── fvMatrix.cxx-backup │ │ │ ├── fvMatrix.hxx │ │ │ ├── fvMatrixI.hxx │ │ │ ├── fvMatrixSolve.cxx-backup │ │ │ └── fvMatrixSolve_Imp.hxx │ │ ├── fvScalarMatrix │ │ │ ├── fvScalarMatrix.cxx │ │ │ └── fvScalarMatrix.hxx │ │ └── solvers │ │ │ ├── GAMGSymSolver │ │ │ └── GAMGAgglomerations │ │ │ │ └── faceAreaPairGAMGAgglomeration │ │ │ │ ├── faceAreaPairGAMGAgglomeration.cxx │ │ │ │ └── faceAreaPairGAMGAgglomeration.hxx │ │ │ └── MULES │ │ │ ├── CMULES.hxx │ │ │ ├── CMULESI.hxx │ │ │ ├── CMULESTemplates.cxx-backup │ │ │ ├── MULES.cxx │ │ │ ├── MULES.hxx │ │ │ ├── MULESI.hxx │ │ │ └── MULESTemplates.cxx-backup │ │ ├── fvMesh │ │ ├── extendedStencil │ │ │ ├── cellToCell │ │ │ │ ├── MeshObjects │ │ │ │ │ ├── centredCECCellToCellStencilObject.cxx │ │ │ │ │ ├── centredCECCellToCellStencilObject.hxx │ │ │ │ │ ├── centredCFCCellToCellStencilObject.cxx │ │ │ │ │ ├── centredCFCCellToCellStencilObject.hxx │ │ │ │ │ ├── centredCPCCellToCellStencilObject.cxx │ │ │ │ │ └── centredCPCCellToCellStencilObject.hxx │ │ │ │ ├── extendedCellToCellStencil.cxx │ │ │ │ ├── extendedCellToCellStencil.hxx │ │ │ │ ├── extendedCellToCellStencilI.hxx │ │ │ │ ├── extendedCellToCellStencilTemplates.cxx-backup │ │ │ │ ├── extendedCentredCellToCellStencil.cxx │ │ │ │ ├── extendedCentredCellToCellStencil.hxx │ │ │ │ └── globalIndexStencils │ │ │ │ │ ├── CECCellToCellStencil.cxx │ │ │ │ │ ├── CECCellToCellStencil.hxx │ │ │ │ │ ├── CFCCellToCellStencil.cxx │ │ │ │ │ ├── CFCCellToCellStencil.hxx │ │ │ │ │ ├── CPCCellToCellStencil.cxx │ │ │ │ │ ├── CPCCellToCellStencil.hxx │ │ │ │ │ ├── cellToCellStencil.cxx │ │ │ │ │ └── cellToCellStencil.hxx │ │ │ ├── cellToFace │ │ │ │ ├── MeshObjects │ │ │ │ │ ├── centredCECCellToFaceStencilObject.cxx │ │ │ │ │ ├── centredCECCellToFaceStencilObject.hxx │ │ │ │ │ ├── centredCFCCellToFaceStencilObject.cxx │ │ │ │ │ ├── centredCFCCellToFaceStencilObject.hxx │ │ │ │ │ ├── centredCPCCellToFaceStencilObject.cxx │ │ │ │ │ ├── centredCPCCellToFaceStencilObject.hxx │ │ │ │ │ ├── centredFECCellToFaceStencilObject.cxx │ │ │ │ │ ├── centredFECCellToFaceStencilObject.hxx │ │ │ │ │ ├── pureUpwindCFCCellToFaceStencilObject.cxx │ │ │ │ │ ├── pureUpwindCFCCellToFaceStencilObject.hxx │ │ │ │ │ ├── upwindCECCellToFaceStencilObject.cxx │ │ │ │ │ ├── upwindCECCellToFaceStencilObject.hxx │ │ │ │ │ ├── upwindCFCCellToFaceStencilObject.cxx │ │ │ │ │ ├── upwindCFCCellToFaceStencilObject.hxx │ │ │ │ │ ├── upwindCPCCellToFaceStencilObject.cxx │ │ │ │ │ ├── upwindCPCCellToFaceStencilObject.hxx │ │ │ │ │ ├── upwindFECCellToFaceStencilObject.cxx │ │ │ │ │ └── upwindFECCellToFaceStencilObject.hxx │ │ │ │ ├── extendedCellToFaceStencil.cxx │ │ │ │ ├── extendedCellToFaceStencil.hxx │ │ │ │ ├── extendedCellToFaceStencilI.hxx │ │ │ │ ├── extendedCellToFaceStencilTemplates.cxx-backup │ │ │ │ ├── extendedCentredCellToFaceStencil.cxx │ │ │ │ ├── extendedCentredCellToFaceStencil.hxx │ │ │ │ ├── extendedUpwindCellToFaceStencil.cxx │ │ │ │ ├── extendedUpwindCellToFaceStencil.hxx │ │ │ │ ├── extendedUpwindCellToFaceStencilI.hxx │ │ │ │ ├── extendedUpwindCellToFaceStencilTemplates.cxx-backup │ │ │ │ └── globalIndexStencils │ │ │ │ │ ├── CECCellToFaceStencil.cxx │ │ │ │ │ ├── CECCellToFaceStencil.hxx │ │ │ │ │ ├── CFCCellToFaceStencil.cxx │ │ │ │ │ ├── CFCCellToFaceStencil.hxx │ │ │ │ │ ├── CPCCellToFaceStencil.cxx │ │ │ │ │ ├── CPCCellToFaceStencil.hxx │ │ │ │ │ ├── FECCellToFaceStencil.cxx │ │ │ │ │ ├── FECCellToFaceStencil.hxx │ │ │ │ │ ├── cellToFaceStencil.cxx │ │ │ │ │ └── cellToFaceStencil.hxx │ │ │ └── faceToCell │ │ │ │ ├── MeshObjects │ │ │ │ ├── centredCFCFaceToCellStencilObject.cxx │ │ │ │ └── centredCFCFaceToCellStencilObject.hxx │ │ │ │ ├── extendedCentredFaceToCellStencil.cxx │ │ │ │ ├── extendedCentredFaceToCellStencil.hxx │ │ │ │ ├── extendedFaceToCellStencil.cxx │ │ │ │ ├── extendedFaceToCellStencil.hxx │ │ │ │ ├── extendedFaceToCellStencilI.hxx │ │ │ │ ├── extendedFaceToCellStencilTemplates.cxx-backup │ │ │ │ └── globalIndexStencils │ │ │ │ ├── CFCFaceToCellStencil.cxx │ │ │ │ ├── CFCFaceToCellStencil.hxx │ │ │ │ ├── faceToCellStencil.cxx │ │ │ │ └── faceToCellStencil.hxx │ │ ├── fvBoundaryMesh │ │ │ ├── fvBoundaryMesh.cxx │ │ │ └── fvBoundaryMesh.hxx │ │ ├── fvMesh.cxx │ │ ├── fvMesh.hxx │ │ ├── fvMeshGeometry.cxx │ │ ├── fvMeshI.hxx │ │ ├── fvMeshLduAddressing.hxx │ │ ├── fvMeshMapper │ │ │ ├── fvBoundaryMeshMapper.hxx │ │ │ ├── fvMeshMapper.hxx │ │ │ ├── fvPatchMapper.cxx │ │ │ ├── fvPatchMapper.hxx │ │ │ ├── fvSurfaceMapper.cxx │ │ │ └── fvSurfaceMapper.hxx │ │ ├── fvMeshTemplates.cxx-backup │ │ ├── fvPatches │ │ │ ├── basic │ │ │ │ ├── coupled │ │ │ │ │ ├── coupledFvPatch.cxx │ │ │ │ │ └── coupledFvPatch.hxx │ │ │ │ └── generic │ │ │ │ │ ├── genericFvPatch.cxx │ │ │ │ │ └── genericFvPatch.hxx │ │ │ ├── constraint │ │ │ │ ├── cyclic │ │ │ │ │ ├── cyclicFvPatch.cxx │ │ │ │ │ └── cyclicFvPatch.hxx │ │ │ │ ├── cyclicACMI │ │ │ │ │ ├── cyclicACMIFvPatch.cxx │ │ │ │ │ └── cyclicACMIFvPatch.hxx │ │ │ │ ├── cyclicAMI │ │ │ │ │ ├── cyclicAMIFvPatch.cxx │ │ │ │ │ └── cyclicAMIFvPatch.hxx │ │ │ │ ├── cyclicRepeatAMI │ │ │ │ │ ├── cyclicRepeatAMIFvPatch.cxx │ │ │ │ │ └── cyclicRepeatAMIFvPatch.hxx │ │ │ │ ├── cyclicSlip │ │ │ │ │ ├── cyclicSlipFvPatch.cxx │ │ │ │ │ └── cyclicSlipFvPatch.hxx │ │ │ │ ├── empty │ │ │ │ │ ├── emptyFvPatch.cxx │ │ │ │ │ └── emptyFvPatch.hxx │ │ │ │ ├── nonuniformTransformCyclic │ │ │ │ │ ├── nonuniformTransformCyclicFvPatch.cxx │ │ │ │ │ └── nonuniformTransformCyclicFvPatch.hxx │ │ │ │ ├── processor │ │ │ │ │ ├── processorFvPatch.cxx │ │ │ │ │ └── processorFvPatch.hxx │ │ │ │ ├── processorCyclic │ │ │ │ │ ├── processorCyclicFvPatch.cxx │ │ │ │ │ └── processorCyclicFvPatch.hxx │ │ │ │ ├── symmetry │ │ │ │ │ ├── symmetryFvPatch.cxx │ │ │ │ │ └── symmetryFvPatch.hxx │ │ │ │ ├── symmetryPlane │ │ │ │ │ ├── symmetryPlaneFvPatch.cxx │ │ │ │ │ └── symmetryPlaneFvPatch.hxx │ │ │ │ └── wedge │ │ │ │ │ ├── wedgeFvPatch.cxx │ │ │ │ │ └── wedgeFvPatch.hxx │ │ │ ├── derived │ │ │ │ ├── mapped │ │ │ │ │ ├── mappedFvPatch.cxx │ │ │ │ │ ├── mappedFvPatch.hxx │ │ │ │ │ ├── mappedWallFvPatch.cxx │ │ │ │ │ └── mappedWallFvPatch.hxx │ │ │ │ ├── regionCoupled │ │ │ │ │ ├── regionCoupledBaseFvPatch.cxx │ │ │ │ │ ├── regionCoupledBaseFvPatch.hxx │ │ │ │ │ ├── regionCoupledFvPatch.cxx │ │ │ │ │ ├── regionCoupledFvPatch.hxx │ │ │ │ │ ├── regionCoupledWallFvPatch.cxx │ │ │ │ │ └── regionCoupledWallFvPatch.hxx │ │ │ │ └── wall │ │ │ │ │ ├── wallFvPatch.cxx │ │ │ │ │ └── wallFvPatch.hxx │ │ │ └── fvPatch │ │ │ │ ├── fvPatch.cxx │ │ │ │ ├── fvPatch.hxx │ │ │ │ ├── fvPatchFvMeshTemplates.cxx-backup │ │ │ │ ├── fvPatchFvMeshTemplates_Imp.hxx │ │ │ │ ├── fvPatchI.hxx │ │ │ │ ├── fvPatchList.hxx │ │ │ │ ├── fvPatchNew.cxx │ │ │ │ └── fvPatchTemplates.cxx-backup │ │ ├── singleCellFvMesh │ │ │ ├── singleCellFvMesh.cxx │ │ │ ├── singleCellFvMesh.hxx │ │ │ ├── singleCellFvMeshInterpolate.cxx-backup │ │ │ └── singleCellFvMeshInterpolate_Imp.hxx │ │ └── wallDist │ │ │ ├── nearWallDist │ │ │ ├── nearWallDist.cxx │ │ │ ├── nearWallDist.hxx │ │ │ ├── nearWallDistNoSearch.cxx │ │ │ └── nearWallDistNoSearch.hxx │ │ │ ├── patchDistMethods │ │ │ ├── Poisson │ │ │ │ ├── PoissonPatchDistMethod.cxx │ │ │ │ └── PoissonPatchDistMethod.hxx │ │ │ ├── advectionDiffusion │ │ │ │ ├── advectionDiffusionPatchDistMethod.cxx │ │ │ │ └── advectionDiffusionPatchDistMethod.hxx │ │ │ ├── meshWave │ │ │ │ ├── meshWavePatchDistMethod.cxx │ │ │ │ ├── meshWavePatchDistMethod.hxx │ │ │ │ └── wallDistData │ │ │ │ │ ├── wallDistData.cxx-backup │ │ │ │ │ ├── wallDistData.hxx │ │ │ │ │ └── wallDistDataI.hxx │ │ │ └── patchDistMethod │ │ │ │ ├── patchDistMethod.cxx │ │ │ │ ├── patchDistMethod.hxx │ │ │ │ ├── patchDistMethodI.hxx │ │ │ │ └── patchDistMethodTemplates.cxx-backup │ │ │ ├── wallDist │ │ │ ├── wallDist.cxx │ │ │ └── wallDist.hxx │ │ │ └── wallPointYPlus │ │ │ ├── wallPointYPlus.cxx │ │ │ ├── wallPointYPlus.hxx │ │ │ └── wallPointYPlusI.hxx │ │ ├── interpolation │ │ ├── interpolation │ │ │ ├── interpolation │ │ │ │ ├── interpolation.cxx-backup │ │ │ │ ├── interpolation.hxx │ │ │ │ ├── interpolationI.hxx │ │ │ │ ├── interpolationNew.cxx-backup │ │ │ │ ├── interpolationNew_Imp.hxx │ │ │ │ └── interpolations.cxx │ │ │ ├── interpolationCell │ │ │ │ ├── interpolationCell.cxx-backup │ │ │ │ ├── interpolationCell.hxx │ │ │ │ ├── interpolationCellI.hxx │ │ │ │ └── makeInterpolationCell.cxx │ │ │ ├── interpolationCellPatchConstrained │ │ │ │ ├── interpolationCellPatchConstrained.cxx-backup │ │ │ │ ├── interpolationCellPatchConstrained.hxx │ │ │ │ ├── interpolationCellPatchConstrainedI.hxx │ │ │ │ └── makeInterpolationCellPatchConstrained.cxx │ │ │ ├── interpolationCellPoint │ │ │ │ ├── cellPointWeight │ │ │ │ │ ├── cellPointWeight.cxx │ │ │ │ │ └── cellPointWeight.hxx │ │ │ │ ├── interpolationCellPoint.cxx-backup │ │ │ │ ├── interpolationCellPoint.hxx │ │ │ │ ├── interpolationCellPointI.hxx │ │ │ │ ├── interpolationCellPoint_Imp.hxx │ │ │ │ └── makeInterpolationCellPoint.cxx │ │ │ ├── interpolationCellPointFace │ │ │ │ ├── findCellPointFaceTet.hxx │ │ │ │ ├── findCellPointFaceTriangle.hxx │ │ │ │ ├── interpolationCellPointFace.cxx-backup │ │ │ │ ├── interpolationCellPointFace.hxx │ │ │ │ ├── interpolationCellPointFaceI.hxx │ │ │ │ └── makeInterpolationCellPointFace.cxx │ │ │ ├── interpolationCellPointWallModified │ │ │ │ ├── interpolationCellPointWallModified.cxx-backup │ │ │ │ ├── interpolationCellPointWallModified.hxx │ │ │ │ ├── interpolationCellPointWallModifiedI.hxx │ │ │ │ └── makeInterpolationCellPointWallModified.cxx │ │ │ └── interpolationPointMVC │ │ │ │ ├── interpolationPointMVC.cxx-backup │ │ │ │ ├── interpolationPointMVC.hxx │ │ │ │ ├── interpolationPointMVCI.hxx │ │ │ │ ├── interpolationPointMVC_Imp.hxx │ │ │ │ ├── makeInterpolationPointMVC.cxx │ │ │ │ ├── pointMVCWeight.cxx │ │ │ │ ├── pointMVCWeight.hxx │ │ │ │ └── pointMVCWeightI.hxx │ │ ├── mapping │ │ │ └── fvFieldMappers │ │ │ │ ├── MapFvFields.hxx │ │ │ │ ├── MapFvSurfaceField.hxx │ │ │ │ └── MapFvVolField.hxx │ │ ├── surfaceInterpolation │ │ │ ├── blendedSchemeBase │ │ │ │ ├── blendedSchemeBase.hxx │ │ │ │ └── blendedSchemeBaseName.cxx │ │ │ ├── limitedSchemes │ │ │ │ ├── Gamma │ │ │ │ │ ├── Gamma.cxx │ │ │ │ │ └── Gamma.hxx │ │ │ │ ├── Limited │ │ │ │ │ └── Limited.hxx │ │ │ │ ├── Limited01 │ │ │ │ │ └── Limited01.hxx │ │ │ │ ├── LimitedScheme │ │ │ │ │ ├── LimitFuncs.cxx-backup │ │ │ │ │ ├── LimitFuncs.hxx │ │ │ │ │ ├── LimitFuncsI.hxx │ │ │ │ │ ├── LimitedScheme.cxx-backup │ │ │ │ │ ├── LimitedScheme.hxx │ │ │ │ │ ├── LimitedSchemeI.hxx │ │ │ │ │ ├── NVDTVD.hxx │ │ │ │ │ └── NVDVTVDV.hxx │ │ │ │ ├── MUSCL │ │ │ │ │ ├── MUSCL.cxx │ │ │ │ │ └── MUSCL.hxx │ │ │ │ ├── Minmod │ │ │ │ │ ├── Minmod.cxx │ │ │ │ │ └── Minmod.hxx │ │ │ │ ├── OSPRE │ │ │ │ │ ├── OSPRE.cxx │ │ │ │ │ └── OSPRE.hxx │ │ │ │ ├── Phi │ │ │ │ │ ├── Phi.cxx │ │ │ │ │ └── Phi.hxx │ │ │ │ ├── PhiScheme │ │ │ │ │ ├── PhiScheme.cxx-backup │ │ │ │ │ ├── PhiScheme.hxx │ │ │ │ │ └── PhiSchemeI.hxx │ │ │ │ ├── QUICK │ │ │ │ │ ├── QUICK.cxx │ │ │ │ │ ├── QUICK.hxx │ │ │ │ │ └── QUICKV.hxx │ │ │ │ ├── SFCD │ │ │ │ │ ├── SFCD.cxx │ │ │ │ │ └── SFCD.hxx │ │ │ │ ├── SuperBee │ │ │ │ │ ├── SuperBee.cxx │ │ │ │ │ └── SuperBee.hxx │ │ │ │ ├── UMIST │ │ │ │ │ ├── UMIST.cxx │ │ │ │ │ └── UMIST.hxx │ │ │ │ ├── blended │ │ │ │ │ ├── blended.cxx │ │ │ │ │ └── blended.hxx │ │ │ │ ├── filteredLinear │ │ │ │ │ ├── filteredLinear.cxx │ │ │ │ │ └── filteredLinear.hxx │ │ │ │ ├── filteredLinear2 │ │ │ │ │ ├── filteredLinear2.cxx │ │ │ │ │ ├── filteredLinear2.hxx │ │ │ │ │ └── filteredLinear2V.hxx │ │ │ │ ├── filteredLinear3 │ │ │ │ │ ├── filteredLinear3.cxx │ │ │ │ │ ├── filteredLinear3.hxx │ │ │ │ │ └── filteredLinear3V.hxx │ │ │ │ ├── limitWith │ │ │ │ │ ├── limitWith.cxx │ │ │ │ │ └── limitWith.hxx │ │ │ │ ├── limitedCubic │ │ │ │ │ ├── limitedCubic.cxx │ │ │ │ │ ├── limitedCubic.hxx │ │ │ │ │ └── limitedCubicV.hxx │ │ │ │ ├── limitedLinear │ │ │ │ │ ├── limitedLinear.cxx │ │ │ │ │ └── limitedLinear.hxx │ │ │ │ ├── limitedSurfaceInterpolationScheme │ │ │ │ │ ├── limitedSurfaceInterpolationScheme.cxx-backup │ │ │ │ │ ├── limitedSurfaceInterpolationScheme.hxx │ │ │ │ │ ├── limitedSurfaceInterpolationSchemeI.hxx │ │ │ │ │ └── limitedSurfaceInterpolationSchemes.cxx │ │ │ │ ├── upwind │ │ │ │ │ ├── upwind.cxx │ │ │ │ │ └── upwind.hxx │ │ │ │ ├── vanAlbada │ │ │ │ │ ├── vanAlbada.cxx │ │ │ │ │ └── vanAlbada.hxx │ │ │ │ └── vanLeer │ │ │ │ │ ├── vanLeer.cxx │ │ │ │ │ └── vanLeer.hxx │ │ │ ├── multivariateSchemes │ │ │ │ ├── Gamma │ │ │ │ │ └── multivariateGamma.cxx │ │ │ │ ├── MUSCL │ │ │ │ │ └── multivariateMUSCL.cxx │ │ │ │ ├── Minmod │ │ │ │ │ └── multivariateMinmod.cxx │ │ │ │ ├── SuperBee │ │ │ │ │ └── multivariateSuperBee.cxx │ │ │ │ ├── limitedCubic │ │ │ │ │ └── multivariateLimitedCubic.cxx │ │ │ │ ├── limitedLinear │ │ │ │ │ └── multivariateLimitedLinear.cxx │ │ │ │ ├── multivariateIndependentScheme │ │ │ │ │ ├── multivariateIndependentScheme.cxx-backup │ │ │ │ │ ├── multivariateIndependentScheme.hxx │ │ │ │ │ ├── multivariateIndependentSchemeI.hxx │ │ │ │ │ └── multivariateIndependentSchemes.cxx │ │ │ │ ├── multivariateScheme │ │ │ │ │ ├── multivariateScheme.cxx-backup │ │ │ │ │ ├── multivariateScheme.hxx │ │ │ │ │ └── multivariateSchemeI.hxx │ │ │ │ ├── multivariateSelectionScheme │ │ │ │ │ ├── multivariateSelectionScheme.cxx-backup │ │ │ │ │ ├── multivariateSelectionScheme.hxx │ │ │ │ │ ├── multivariateSelectionSchemeI.hxx │ │ │ │ │ └── multivariateSelectionSchemes.cxx │ │ │ │ ├── multivariateSurfaceInterpolationScheme │ │ │ │ │ ├── multivariateSurfaceInterpolationScheme.cxx-backup │ │ │ │ │ ├── multivariateSurfaceInterpolationScheme.hxx │ │ │ │ │ ├── multivariateSurfaceInterpolationSchemeI.hxx │ │ │ │ │ └── multivariateSurfaceInterpolationSchemes.cxx │ │ │ │ ├── upwind │ │ │ │ │ ├── multivariateUpwind.cxx │ │ │ │ │ └── multivariateUpwind.hxx │ │ │ │ └── vanLeer │ │ │ │ │ └── multivariateVanLeer.cxx │ │ │ ├── schemes │ │ │ │ ├── CentredFitScheme │ │ │ │ │ ├── CentredFitData.cxx │ │ │ │ │ ├── CentredFitData.hxx │ │ │ │ │ └── CentredFitScheme.hxx │ │ │ │ ├── CoBlended │ │ │ │ │ ├── CoBlended.cxx │ │ │ │ │ └── CoBlended.hxx │ │ │ │ ├── FitData │ │ │ │ │ ├── FitData.cxx-backup │ │ │ │ │ ├── FitData.hxx │ │ │ │ │ └── FitDataI.hxx │ │ │ │ ├── LUST │ │ │ │ │ ├── LUST.cxx │ │ │ │ │ └── LUST.hxx │ │ │ │ ├── PureUpwindFitScheme │ │ │ │ │ └── PureUpwindFitScheme.hxx │ │ │ │ ├── UpwindFitScheme │ │ │ │ │ ├── UpwindFitData.cxx-backup │ │ │ │ │ ├── UpwindFitData.hxx │ │ │ │ │ ├── UpwindFitDataI.hxx │ │ │ │ │ └── UpwindFitScheme.hxx │ │ │ │ ├── biLinearFit │ │ │ │ │ ├── biLinearFit.cxx │ │ │ │ │ └── biLinearFitPolynomial.hxx │ │ │ │ ├── cellCoBlended │ │ │ │ │ ├── cellCoBlended.cxx │ │ │ │ │ └── cellCoBlended.hxx │ │ │ │ ├── clippedLinear │ │ │ │ │ ├── clippedLinear.cxx │ │ │ │ │ └── clippedLinear.hxx │ │ │ │ ├── cubic │ │ │ │ │ ├── cubic.cxx │ │ │ │ │ └── cubic.hxx │ │ │ │ ├── cubicUpwindFit │ │ │ │ │ ├── cubicUpwindFit.cxx │ │ │ │ │ └── cubicUpwindFitPolynomial.hxx │ │ │ │ ├── downwind │ │ │ │ │ ├── downwind.cxx │ │ │ │ │ └── downwind.hxx │ │ │ │ ├── fixedBlended │ │ │ │ │ ├── fixedBlended.cxx │ │ │ │ │ └── fixedBlended.hxx │ │ │ │ ├── harmonic │ │ │ │ │ ├── harmonic.cxx │ │ │ │ │ └── harmonic.hxx │ │ │ │ ├── limiterBlended │ │ │ │ │ ├── limiterBlended.cxx │ │ │ │ │ └── limiterBlended.hxx │ │ │ │ ├── linear │ │ │ │ │ ├── linear.cxx │ │ │ │ │ └── linear.hxx │ │ │ │ ├── linearFit │ │ │ │ │ ├── linearFit.cxx │ │ │ │ │ └── linearFitPolynomial.hxx │ │ │ │ ├── linearPureUpwindFit │ │ │ │ │ └── linearPureUpwindFit.cxx │ │ │ │ ├── linearUpwind │ │ │ │ │ ├── linearUpwind.cxx │ │ │ │ │ ├── linearUpwind.hxx │ │ │ │ │ ├── linearUpwindV.cxx │ │ │ │ │ └── linearUpwindV.hxx │ │ │ │ ├── localBlended │ │ │ │ │ ├── localBlended.cxx │ │ │ │ │ └── localBlended.hxx │ │ │ │ ├── localMax │ │ │ │ │ ├── localMax.cxx │ │ │ │ │ └── localMax.hxx │ │ │ │ ├── localMin │ │ │ │ │ ├── localMin.cxx │ │ │ │ │ └── localMin.hxx │ │ │ │ ├── midPoint │ │ │ │ │ ├── midPoint.cxx │ │ │ │ │ └── midPoint.hxx │ │ │ │ ├── outletStabilised │ │ │ │ │ ├── outletStabilised.cxx │ │ │ │ │ └── outletStabilised.hxx │ │ │ │ ├── pointLinear │ │ │ │ │ ├── pointLinear.cxx │ │ │ │ │ └── pointLinear.hxx │ │ │ │ ├── quadraticFit │ │ │ │ │ ├── quadraticFit.cxx │ │ │ │ │ └── quadraticFitPolynomial.hxx │ │ │ │ ├── quadraticLinearFit │ │ │ │ │ ├── quadraticLinearFit.cxx │ │ │ │ │ └── quadraticLinearFitPolynomial.hxx │ │ │ │ ├── quadraticLinearPureUpwindFit │ │ │ │ │ └── quadraticLinearPureUpwindFit.cxx │ │ │ │ ├── quadraticLinearUpwindFit │ │ │ │ │ ├── quadraticLinearUpwindFit.cxx │ │ │ │ │ └── quadraticLinearUpwindFitPolynomial.hxx │ │ │ │ ├── quadraticUpwindFit │ │ │ │ │ ├── quadraticUpwindFit.cxx │ │ │ │ │ └── quadraticUpwindFitPolynomial.hxx │ │ │ │ ├── reverseLinear │ │ │ │ │ ├── reverseLinear.cxx │ │ │ │ │ └── reverseLinear.hxx │ │ │ │ ├── skewCorrected │ │ │ │ │ ├── skewCorrected.cxx │ │ │ │ │ ├── skewCorrected.hxx │ │ │ │ │ ├── skewCorrectionVectors.cxx │ │ │ │ │ └── skewCorrectionVectors.hxx │ │ │ │ └── weighted │ │ │ │ │ ├── weighted.cxx │ │ │ │ │ └── weighted.hxx │ │ │ ├── surfaceInterpolation │ │ │ │ ├── surfaceInterpolate.cxx-backup │ │ │ │ ├── surfaceInterpolate.hxx │ │ │ │ ├── surfaceInterpolateI.hxx │ │ │ │ ├── surfaceInterpolation.cxx │ │ │ │ └── surfaceInterpolation.hxx │ │ │ └── surfaceInterpolationScheme │ │ │ │ ├── surfaceInterpolationScheme.cxx-backup │ │ │ │ ├── surfaceInterpolationScheme.hxx │ │ │ │ ├── surfaceInterpolationSchemeI.hxx │ │ │ │ └── surfaceInterpolationSchemes.cxx │ │ └── volPointInterpolation │ │ │ ├── pointConstraints.cxx │ │ │ ├── pointConstraints.hxx │ │ │ ├── pointConstraintsI.hxx │ │ │ ├── pointConstraintsTemplates.cxx-backup │ │ │ ├── volPointInterpolate.cxx-backup │ │ │ ├── volPointInterpolate_Imp.hxx │ │ │ ├── volPointInterpolation.cxx │ │ │ └── volPointInterpolation.hxx │ │ ├── module │ │ └── FiniteVolume_Module.hxx │ │ ├── surfaceMesh │ │ └── surfaceMesh.hxx │ │ └── volMesh │ │ └── volMesh.hxx ├── cpp.hint └── include │ ├── AverageField.hxx │ ├── AverageFieldI.hxx │ ├── CECCellToCellStencil.hxx │ ├── CECCellToFaceStencil.hxx │ ├── CFCCellToCellStencil.hxx │ ├── CFCCellToFaceStencil.hxx │ ├── CFCFaceToCellStencil.hxx │ ├── CMULES.hxx │ ├── CMULESI.hxx │ ├── CPCCellToCellStencil.hxx │ ├── CPCCellToFaceStencil.hxx │ ├── CentredFitData.hxx │ ├── CentredFitScheme.hxx │ ├── CentredFitSnGradData.hxx │ ├── CentredFitSnGradDataI.hxx │ ├── CentredFitSnGradScheme.hxx │ ├── CoBlended.hxx │ ├── CoEulerDdtScheme.hxx │ ├── CoEulerDdtSchemeI.hxx │ ├── CorrectPhi.hxx │ ├── CorrectPhiI.hxx │ ├── CourantNo.lxx │ ├── CrankNicolsonDdtScheme.hxx │ ├── CrankNicolsonDdtSchemeI.hxx │ ├── DarcyForchheimer.hxx │ ├── DarcyForchheimerI.hxx │ ├── EulerD2dt2Scheme.hxx │ ├── EulerD2dt2SchemeI.hxx │ ├── EulerDdtScheme.hxx │ ├── EulerDdtSchemeI.hxx │ ├── FECCellToFaceStencil.hxx │ ├── FiniteVolume_Module.hxx │ ├── FitData.hxx │ ├── FitDataI.hxx │ ├── Gamma.hxx │ ├── IOMRFZoneList.hxx │ ├── IOporosityModelList.hxx │ ├── LUST.hxx │ ├── LeastSquaresGradTemplate.hxx │ ├── LeastSquaresGradTemplateI.hxx │ ├── LeastSquaresVectorsTemplate.hxx │ ├── LeastSquaresVectorsTemplateI.hxx │ ├── LimitFuncs.hxx │ ├── LimitFuncsI.hxx │ ├── Limited.hxx │ ├── Limited01.hxx │ ├── LimitedScheme.hxx │ ├── LimitedSchemeI.hxx │ ├── MRFZone.hxx │ ├── MRFZoneI.hxx │ ├── MRFZoneList.hxx │ ├── MRFZoneListI.hxx │ ├── MRFZoneTemplatesI.hxx │ ├── MULES.hxx │ ├── MULESI.hxx │ ├── MUSCL.hxx │ ├── MapDimensionedFields.hxx │ ├── MapFvFields.hxx │ ├── MapFvSurfaceField.hxx │ ├── MapFvVolField.hxx │ ├── Minmod.hxx │ ├── NVDTVD.hxx │ ├── NVDVTVDV.hxx │ ├── OSPRE.hxx │ ├── Phi.hxx │ ├── PhiScheme.hxx │ ├── PhiSchemeI.hxx │ ├── PoissonPatchDistMethod.hxx │ ├── PrghPressureFvPatchScalarField.hxx │ ├── PrghPressureFvPatchScalarFieldI.hxx │ ├── PureUpwindFitScheme.hxx │ ├── QUICK.hxx │ ├── QUICKV.hxx │ ├── SFCD.hxx │ ├── SLTSDdtScheme.hxx │ ├── SLTSDdtSchemeI.hxx │ ├── SRFFreestreamVelocityFvPatchVectorField.hxx │ ├── SRFModel.hxx │ ├── SRFVelocityFvPatchVectorField.hxx │ ├── SRFWallVelocityFvPatchVectorField.hxx │ ├── SuperBee.hxx │ ├── UMIST.hxx │ ├── UpwindFitData.hxx │ ├── UpwindFitDataI.hxx │ ├── UpwindFitScheme.hxx │ ├── VenkatakrishnanGradientLimiter.hxx │ ├── activeBaffleVelocityFvPatchVectorField.hxx │ ├── activePressureForceBaffleVelocityFvPatchVectorField.hxx │ ├── adjustPhi.hxx │ ├── advectionDiffusionPatchDistMethod.hxx │ ├── advectiveFvPatchField.hxx │ ├── advectiveFvPatchFieldI.hxx │ ├── advectiveFvPatchFields.hxx │ ├── advectiveFvPatchFieldsFwd.hxx │ ├── alphaControls.lxx │ ├── backwardDdtScheme.hxx │ ├── backwardDdtSchemeI.hxx │ ├── basicSymmetryFvPatchField.hxx │ ├── basicSymmetryFvPatchFieldI.hxx │ ├── basicSymmetryFvPatchFields.hxx │ ├── biLinearFitPolynomial.hxx │ ├── blended.hxx │ ├── blendedSchemeBase.hxx │ ├── bound.hxx │ ├── boundedConvectionScheme.hxx │ ├── boundedConvectionSchemeI.hxx │ ├── boundedDdtScheme.hxx │ ├── boundedDdtSchemeI.hxx │ ├── calculatedFvPatchField.hxx │ ├── calculatedFvPatchFieldI.hxx │ ├── calculatedFvPatchFields.hxx │ ├── calculatedFvPatchFieldsFwd.hxx │ ├── calculatedFvsPatchField.hxx │ ├── calculatedFvsPatchFieldI.hxx │ ├── calculatedFvsPatchFields.hxx │ ├── calculatedFvsPatchFieldsFwd.hxx │ ├── cellCoBlended.hxx │ ├── cellLimitedGrad.hxx │ ├── cellLimitedGradI.hxx │ ├── cellMDLimitedGrad.hxx │ ├── cellPointWeight.hxx │ ├── cellToCellStencil.hxx │ ├── cellToFaceStencil.hxx │ ├── centredCECCellToCellStencilObject.hxx │ ├── centredCECCellToFaceStencilObject.hxx │ ├── centredCFCCellToCellStencilObject.hxx │ ├── centredCFCCellToFaceStencilObject.hxx │ ├── centredCFCFaceToCellStencilObject.hxx │ ├── centredCPCCellToCellStencilObject.hxx │ ├── centredCPCCellToFaceStencilObject.hxx │ ├── centredFECCellToFaceStencilObject.hxx │ ├── checkPatchFieldTypes.lxx │ ├── clippedLinear.hxx │ ├── codedFixedValueFvPatchField.hxx │ ├── codedFixedValueFvPatchFieldI.hxx │ ├── codedFixedValueFvPatchFields.hxx │ ├── codedFixedValueFvPatchFieldsFwd.hxx │ ├── codedMixedFvPatchField.hxx │ ├── codedMixedFvPatchFieldI.hxx │ ├── codedMixedFvPatchFields.hxx │ ├── codedMixedFvPatchFieldsFwd.hxx │ ├── compressibleContinuityErrs.lxx │ ├── compressibleCourantNo.lxx │ ├── compressibleCreatePhi.lxx │ ├── constrainHbyA.hxx │ ├── constrainPressure.hxx │ ├── constrainPressureI.hxx │ ├── continuityErrs.lxx │ ├── convectionScheme.hxx │ ├── convectionSchemeI.hxx │ ├── convergenceControl.hxx │ ├── convergenceControlI.hxx │ ├── correctedSnGrad.hxx │ ├── correctedSnGradI.hxx │ ├── correctorConvergenceControl.hxx │ ├── correctorConvergenceControlI.hxx │ ├── coupledFvPatch.hxx │ ├── coupledFvPatchField.hxx │ ├── coupledFvPatchFieldI.hxx │ ├── coupledFvPatchFields.hxx │ ├── coupledFvPatchFieldsFwd.hxx │ ├── coupledFvsPatchField.hxx │ ├── coupledFvsPatchFieldI.hxx │ ├── coupledFvsPatchFields.hxx │ ├── coupledFvsPatchFieldsFwd.hxx │ ├── createControl.lxx │ ├── createFvOptions.lxx │ ├── createMRF.lxx │ ├── createPhi.lxx │ ├── createPhiv.lxx │ ├── createPimpleControl.lxx │ ├── createPisoControl.lxx │ ├── createRDeltaT.lxx │ ├── createRhoUf.lxx │ ├── createRhoUfIfPresent.lxx │ ├── createSimpleControl.lxx │ ├── createTimeControls.lxx │ ├── createUf.lxx │ ├── createUfIfPresent.lxx │ ├── cubic.hxx │ ├── cubicGradientLimiter.hxx │ ├── cubicUpwindFitPolynomial.hxx │ ├── cyclicACMIFvPatch.hxx │ ├── cyclicACMIFvPatchField.hxx │ ├── cyclicACMIFvPatchFieldI.hxx │ ├── cyclicACMIFvPatchFields.hxx │ ├── cyclicACMIFvPatchFieldsFwd.hxx │ ├── cyclicACMIFvsPatchField.hxx │ ├── cyclicACMIFvsPatchFields.hxx │ ├── cyclicACMIFvsPatchFieldsFwd.hxx │ ├── cyclicAMIFvPatch.hxx │ ├── cyclicAMIFvPatchField.hxx │ ├── cyclicAMIFvPatchFieldI.hxx │ ├── cyclicAMIFvPatchFields.hxx │ ├── cyclicAMIFvPatchFieldsFwd.hxx │ ├── cyclicAMIFvsPatchField.hxx │ ├── cyclicAMIFvsPatchFieldI.hxx │ ├── cyclicAMIFvsPatchFields.hxx │ ├── cyclicAMIFvsPatchFieldsFwd.hxx │ ├── cyclicFvPatch.hxx │ ├── cyclicFvPatchField.hxx │ ├── cyclicFvPatchFieldI.hxx │ ├── cyclicFvPatchFields.hxx │ ├── cyclicFvPatchFieldsFwd.hxx │ ├── cyclicFvsPatchField.hxx │ ├── cyclicFvsPatchFieldI.hxx │ ├── cyclicFvsPatchFields.hxx │ ├── cyclicFvsPatchFieldsFwd.hxx │ ├── cyclicRepeatAMIFvPatch.hxx │ ├── cyclicRepeatAMIFvPatchField.hxx │ ├── cyclicRepeatAMIFvPatchFields.hxx │ ├── cyclicRepeatAMIFvPatchFieldsFwd.hxx │ ├── cyclicRepeatAMIFvsPatchField.hxx │ ├── cyclicRepeatAMIFvsPatchFields.hxx │ ├── cyclicRepeatAMIFvsPatchFieldsFwd.hxx │ ├── cyclicSlipFvPatch.hxx │ ├── cyclicSlipFvPatchField.hxx │ ├── cyclicSlipFvPatchFieldI.hxx │ ├── cyclicSlipFvPatchFields.hxx │ ├── cyclicSlipFvPatchFieldsFwd.hxx │ ├── cyclicSlipFvsPatchField.hxx │ ├── cyclicSlipFvsPatchFieldI.hxx │ ├── cyclicSlipFvsPatchFields.hxx │ ├── cyclicSlipFvsPatchFieldsFwd.hxx │ ├── cylindricalInletVelocityFvPatchVectorField.hxx │ ├── d2dt2Scheme.hxx │ ├── d2dt2SchemeI.hxx │ ├── ddtScheme.hxx │ ├── ddtSchemeI.hxx │ ├── directFvPatchFieldMapper.hxx │ ├── directionMixedFvPatchField.hxx │ ├── directionMixedFvPatchFieldI.hxx │ ├── directionMixedFvPatchFields.hxx │ ├── directionMixedFvPatchFieldsFwd.hxx │ ├── divScheme.hxx │ ├── divSchemeI.hxx │ ├── downwind.hxx │ ├── emptyFvPatch.hxx │ ├── emptyFvPatchField.hxx │ ├── emptyFvPatchFieldI.hxx │ ├── emptyFvPatchFields.hxx │ ├── emptyFvPatchFieldsFwd.hxx │ ├── emptyFvsPatchField.hxx │ ├── emptyFvsPatchFieldI.hxx │ ├── emptyFvsPatchFields.hxx │ ├── emptyFvsPatchFieldsFwd.hxx │ ├── extendedCellToCellStencil.hxx │ ├── extendedCellToCellStencilI.hxx │ ├── extendedCellToFaceStencil.hxx │ ├── extendedCellToFaceStencilI.hxx │ ├── extendedCentredCellToCellStencil.hxx │ ├── extendedCentredCellToFaceStencil.hxx │ ├── extendedCentredFaceToCellStencil.hxx │ ├── extendedFaceToCellStencil.hxx │ ├── extendedFaceToCellStencilI.hxx │ ├── extendedUpwindCellToFaceStencil.hxx │ ├── extendedUpwindCellToFaceStencilI.hxx │ ├── externalCoupledMixedFvPatchField.hxx │ ├── externalCoupledMixedFvPatchFieldI.hxx │ ├── externalCoupledMixedFvPatchFields.hxx │ ├── externalCoupledMixedFvPatchFieldsFwd.hxx │ ├── extrapolatedCalculatedFvPatchField.hxx │ ├── extrapolatedCalculatedFvPatchFieldI.hxx │ ├── extrapolatedCalculatedFvPatchFields.hxx │ ├── extrapolatedCalculatedFvPatchFieldsFwd.hxx │ ├── faceAreaPairGAMGAgglomeration.hxx │ ├── faceCorrectedSnGrad.hxx │ ├── faceCorrectedSnGradI.hxx │ ├── faceLimitedGrad.hxx │ ├── faceMDLimitedGrad.hxx │ ├── faceToCellStencil.hxx │ ├── fanPressureFvPatchScalarField.hxx │ ├── fanPressureJumpFvPatchScalarField.hxx │ ├── filteredLinear.hxx │ ├── filteredLinear2.hxx │ ├── filteredLinear2V.hxx │ ├── filteredLinear3.hxx │ ├── filteredLinear3V.hxx │ ├── findCellPointFaceTet.hxx │ ├── findCellPointFaceTriangle.hxx │ ├── findRefCell.hxx │ ├── fixedBlended.hxx │ ├── fixedCoeff.hxx │ ├── fixedFluxExtrapolatedPressureFvPatchScalarField.hxx │ ├── fixedFluxPressureFvPatchScalarField.hxx │ ├── fixedGradientFvPatchField.hxx │ ├── fixedGradientFvPatchFieldI.hxx │ ├── fixedGradientFvPatchFields.hxx │ ├── fixedGradientFvPatchFieldsFwd.hxx │ ├── fixedInternalValueFvPatchField.hxx │ ├── fixedInternalValueFvPatchFieldI.hxx │ ├── fixedInternalValueFvPatchFields.hxx │ ├── fixedJumpAMIFvPatchField.hxx │ ├── fixedJumpAMIFvPatchFieldI.hxx │ ├── fixedJumpAMIFvPatchFields.hxx │ ├── fixedJumpAMIFvPatchFieldsFwd.hxx │ ├── fixedJumpFvPatchField.hxx │ ├── fixedJumpFvPatchFieldI.hxx │ ├── fixedJumpFvPatchFields.hxx │ ├── fixedJumpFvPatchFieldsFwd.hxx │ ├── fixedMeanFvPatchField.hxx │ ├── fixedMeanFvPatchFieldI.hxx │ ├── fixedMeanFvPatchFields.hxx │ ├── fixedMeanFvPatchFieldsFwd.hxx │ ├── fixedMeanOutletInletFvPatchField.hxx │ ├── fixedMeanOutletInletFvPatchFieldI.hxx │ ├── fixedMeanOutletInletFvPatchFields.hxx │ ├── fixedMeanOutletInletFvPatchFieldsFwd.hxx │ ├── fixedNormalInletOutletVelocityFvPatchVectorField.hxx │ ├── fixedNormalSlipFvPatchField.hxx │ ├── fixedNormalSlipFvPatchFieldI.hxx │ ├── fixedNormalSlipFvPatchFields.hxx │ ├── fixedNormalSlipFvPatchFieldsFwd.hxx │ ├── fixedPressureCompressibleDensityFvPatchScalarField.hxx │ ├── fixedProfileFvPatchField.hxx │ ├── fixedProfileFvPatchFieldI.hxx │ ├── fixedProfileFvPatchFields.hxx │ ├── fixedProfileFvPatchFieldsFwd.hxx │ ├── fixedValueFvPatchField.hxx │ ├── fixedValueFvPatchFieldI.hxx │ ├── fixedValueFvPatchFields.hxx │ ├── fixedValueFvPatchFieldsFwd.hxx │ ├── fixedValueFvsPatchField.hxx │ ├── fixedValueFvsPatchFieldI.hxx │ ├── fixedValueFvsPatchFields.hxx │ ├── fixedValueFvsPatchFieldsFwd.hxx │ ├── flowRateInletVelocityFvPatchVectorField.hxx │ ├── flowRateOutletVelocityFvPatchVectorField.hxx │ ├── fluidSolutionControl.hxx │ ├── fluidSolutionControlI.hxx │ ├── fluxCorrectedVelocityFvPatchVectorField.hxx │ ├── fourthGrad.hxx │ ├── fourthGradI.hxx │ ├── freestreamFvPatchField.hxx │ ├── freestreamFvPatchFieldI.hxx │ ├── freestreamFvPatchFields.hxx │ ├── freestreamFvPatchFieldsFwd.hxx │ ├── freestreamPressureFvPatchScalarField.hxx │ ├── freestreamVelocityFvPatchVectorField.hxx │ ├── fv.hxx │ ├── fvBoundaryMesh.hxx │ ├── fvBoundaryMeshMapper.hxx │ ├── fvCFD.hxx │ ├── fvMatrices.hxx │ ├── fvMatricesFwd.hxx │ ├── fvMatrix.hxx │ ├── fvMatrixI.hxx │ ├── fvMatrixSolve_Imp.hxx │ ├── fvMesh.hxx │ ├── fvMeshFunctionObject.hxx │ ├── fvMeshI.hxx │ ├── fvMeshLduAddressing.hxx │ ├── fvMeshMapper.hxx │ ├── fvOption.hxx │ ├── fvOptionI.hxx │ ├── fvOptionList.hxx │ ├── fvOptionListI.hxx │ ├── fvOptions.hxx │ ├── fvPatch.hxx │ ├── fvPatchField.hxx │ ├── fvPatchFieldI.hxx │ ├── fvPatchFieldMapper.hxx │ ├── fvPatchFieldNew_Imp.hxx │ ├── fvPatchFields.hxx │ ├── fvPatchFieldsFwd.hxx │ ├── fvPatchFvMeshTemplates_Imp.hxx │ ├── fvPatchI.hxx │ ├── fvPatchList.hxx │ ├── fvPatchMapper.hxx │ ├── fvScalarMatrix.hxx │ ├── fvSchemes.hxx │ ├── fvSolution.hxx │ ├── fvSurfaceMapper.hxx │ ├── fvc.hxx │ ├── fvcAverage.hxx │ ├── fvcAverageI.hxx │ ├── fvcCellReduce.hxx │ ├── fvcCellReduceI.hxx │ ├── fvcCurl.hxx │ ├── fvcCurlI.hxx │ ├── fvcD2dt2.hxx │ ├── fvcD2dt2I.hxx │ ├── fvcDDtTemplate.hxx │ ├── fvcDDtTemplateI.hxx │ ├── fvcDdt.hxx │ ├── fvcDdtI.hxx │ ├── fvcDiv.hxx │ ├── fvcDivI.hxx │ ├── fvcFlux.hxx │ ├── fvcFluxI.hxx │ ├── fvcGrad.hxx │ ├── fvcGradI.hxx │ ├── fvcLaplacian.hxx │ ├── fvcLaplacianI.hxx │ ├── fvcMagSqrGradGrad.hxx │ ├── fvcMagSqrGradGradI.hxx │ ├── fvcMeshPhi.hxx │ ├── fvcReconstruct.hxx │ ├── fvcReconstructI.hxx │ ├── fvcSimpleReconstruct_Imp.hxx │ ├── fvcSmooth.hxx │ ├── fvcSnGrad.hxx │ ├── fvcSnGradI.hxx │ ├── fvcSup.hxx │ ├── fvcSupI.hxx │ ├── fvcSurfaceIntegrate.hxx │ ├── fvcSurfaceIntegrateI.hxx │ ├── fvcVolumeIntegrate.hxx │ ├── fvcVolumeIntegrateI.hxx │ ├── fvm.hxx │ ├── fvmD2dt2.hxx │ ├── fvmD2dt2I.hxx │ ├── fvmDdt.hxx │ ├── fvmDdtI.hxx │ ├── fvmDiv.hxx │ ├── fvmDivI.hxx │ ├── fvmLaplacian.hxx │ ├── fvmLaplacianI.hxx │ ├── fvmSup.hxx │ ├── fvmSupI.hxx │ ├── fvsPatchField.hxx │ ├── fvsPatchFieldI.hxx │ ├── fvsPatchFieldNew_Imp.hxx │ ├── fvsPatchFields.hxx │ ├── fvsPatchFieldsFwd.hxx │ ├── gaussConvectionScheme.hxx │ ├── gaussConvectionSchemeI.hxx │ ├── gaussDivScheme.hxx │ ├── gaussDivSchemeI.hxx │ ├── gaussGrad.hxx │ ├── gaussGradI.hxx │ ├── gaussLaplacianScheme.hxx │ ├── gaussLaplacianSchemeI.hxx │ ├── genericFvPatch.hxx │ ├── gh.lxx │ ├── gradScheme.hxx │ ├── gradSchemeI.hxx │ ├── harmonic.hxx │ ├── initContinuityErrs.lxx │ ├── inletOutletFvPatchField.hxx │ ├── inletOutletFvPatchFieldI.hxx │ ├── inletOutletFvPatchFields.hxx │ ├── inletOutletFvPatchFieldsFwd.hxx │ ├── inletOutletTotalTemperatureFvPatchScalarField.hxx │ ├── interfaceCompressionFvPatchScalarField.hxx │ ├── interpolation.hxx │ ├── interpolationCell.hxx │ ├── interpolationCellI.hxx │ ├── interpolationCellPatchConstrained.hxx │ ├── interpolationCellPatchConstrainedI.hxx │ ├── interpolationCellPoint.hxx │ ├── interpolationCellPointFace.hxx │ ├── interpolationCellPointFaceI.hxx │ ├── interpolationCellPointI.hxx │ ├── interpolationCellPointWallModified.hxx │ ├── interpolationCellPointWallModifiedI.hxx │ ├── interpolationCellPoint_Imp.hxx │ ├── interpolationI.hxx │ ├── interpolationNew_Imp.hxx │ ├── interpolationPointMVC.hxx │ ├── interpolationPointMVCI.hxx │ ├── interpolationPointMVC_Imp.hxx │ ├── interstitialInletVelocityFvPatchVectorField.hxx │ ├── jumpCyclicAMIFvPatchField.hxx │ ├── jumpCyclicAMIFvPatchFieldI.hxx │ ├── jumpCyclicAMIFvPatchFields.hxx │ ├── jumpCyclicAMIFvPatchFieldsFwd.hxx │ ├── jumpCyclicFvPatchField.hxx │ ├── jumpCyclicFvPatchFieldI.hxx │ ├── jumpCyclicFvPatchFields.hxx │ ├── jumpCyclicFvPatchFieldsFwd.hxx │ ├── laplacianScheme.hxx │ ├── laplacianSchemeI.hxx │ ├── leastSquaresGrad.hxx │ ├── leastSquaresGradI.hxx │ ├── leastSquaresVectors.hxx │ ├── levelSet.hxx │ ├── levelSetI.hxx │ ├── limitWith.hxx │ ├── limitedCubic.hxx │ ├── limitedCubicV.hxx │ ├── limitedLinear.hxx │ ├── limitedSnGrad.hxx │ ├── limitedSnGradI.hxx │ ├── limitedSurfaceInterpolationScheme.hxx │ ├── limitedSurfaceInterpolationSchemeI.hxx │ ├── limiterBlended.hxx │ ├── linear.hxx │ ├── linearFitPolynomial.hxx │ ├── linearUpwind.hxx │ ├── linearUpwindV.hxx │ ├── localBlended.hxx │ ├── localEulerDdtScheme.hxx │ ├── localEulerDdtSchemeI.hxx │ ├── localMax.hxx │ ├── localMin.hxx │ ├── makeFvOption.hxx │ ├── mappedFieldFvPatchField.hxx │ ├── mappedFieldFvPatchFieldI.hxx │ ├── mappedFieldFvPatchFields.hxx │ ├── mappedFieldFvPatchFieldsFwd.hxx │ ├── mappedFixedInternalValueFvPatchField.hxx │ ├── mappedFixedInternalValueFvPatchFieldI.hxx │ ├── mappedFixedInternalValueFvPatchFields.hxx │ ├── mappedFixedInternalValueFvPatchFieldsFwd.hxx │ ├── mappedFixedPushedInternalValueFvPatchField.hxx │ ├── mappedFixedPushedInternalValueFvPatchFieldI.hxx │ ├── mappedFixedPushedInternalValueFvPatchFields.hxx │ ├── mappedFixedPushedInternalValueFvPatchFieldsFwd.hxx │ ├── mappedFixedValueFvPatchField.hxx │ ├── mappedFixedValueFvPatchFieldI.hxx │ ├── mappedFixedValueFvPatchFields.hxx │ ├── mappedFixedValueFvPatchFieldsFwd.hxx │ ├── mappedFlowRateFvPatchVectorField.hxx │ ├── mappedFvPatch.hxx │ ├── mappedPatchFieldBase.hxx │ ├── mappedPatchFieldBaseI.hxx │ ├── mappedVelocityFluxFixedValueFvPatchField.hxx │ ├── mappedWallFvPatch.hxx │ ├── matchedFlowRateOutletVelocityFvPatchVectorField.hxx │ ├── meshWavePatchDistMethod.hxx │ ├── midPoint.hxx │ ├── minmodGradientLimiter.hxx │ ├── mixedFvPatchField.hxx │ ├── mixedFvPatchFieldI.hxx │ ├── mixedFvPatchFields.hxx │ ├── mixedFvPatchFieldsFwd.hxx │ ├── movingMeshContinuityErrs.lxx │ ├── movingMeshRhoUContinuityErrs.lxx │ ├── movingWallVelocityFvPatchVectorField.hxx │ ├── multiRegionSolutionControl.hxx │ ├── multivariateGaussConvectionScheme.hxx │ ├── multivariateGaussConvectionSchemeI.hxx │ ├── multivariateIndependentScheme.hxx │ ├── multivariateIndependentSchemeI.hxx │ ├── multivariateScheme.hxx │ ├── multivariateSchemeI.hxx │ ├── multivariateSelectionScheme.hxx │ ├── multivariateSelectionSchemeI.hxx │ ├── multivariateSurfaceInterpolationScheme.hxx │ ├── multivariateSurfaceInterpolationSchemeI.hxx │ ├── multivariateUpwind.hxx │ ├── nearWallDist.hxx │ ├── nearWallDistNoSearch.hxx │ ├── noSlipFvPatchVectorField.hxx │ ├── nonOrthogonalSolutionControl.hxx │ ├── nonOrthogonalSolutionControlI.hxx │ ├── nonuniformTransformCyclicFvPatch.hxx │ ├── nonuniformTransformCyclicFvPatchField.hxx │ ├── nonuniformTransformCyclicFvPatchFieldI.hxx │ ├── nonuniformTransformCyclicFvPatchFields.hxx │ ├── nonuniformTransformCyclicFvPatchFieldsFwd.hxx │ ├── nonuniformTransformCyclicFvsPatchField.hxx │ ├── nonuniformTransformCyclicFvsPatchFieldI.hxx │ ├── nonuniformTransformCyclicFvsPatchFields.hxx │ ├── nonuniformTransformCyclicFvsPatchFieldsFwd.hxx │ ├── orthogonalSnGrad.hxx │ ├── orthogonalSnGradI.hxx │ ├── outletInletFvPatchField.hxx │ ├── outletInletFvPatchFieldI.hxx │ ├── outletInletFvPatchFields.hxx │ ├── outletInletFvPatchFieldsFwd.hxx │ ├── outletMappedUniformInletFvPatchField.hxx │ ├── outletMappedUniformInletFvPatchFieldI.hxx │ ├── outletMappedUniformInletFvPatchFields.hxx │ ├── outletMappedUniformInletFvPatchFieldsFwd.hxx │ ├── outletPhaseMeanVelocityFvPatchVectorField.hxx │ ├── outletStabilised.hxx │ ├── partialSlipFvPatchField.hxx │ ├── partialSlipFvPatchFieldI.hxx │ ├── partialSlipFvPatchFields.hxx │ ├── partialSlipFvPatchFieldsFwd.hxx │ ├── patchDistMethod.hxx │ ├── patchDistMethodI.hxx │ ├── phaseHydrostaticPressureFvPatchScalarField.hxx │ ├── pimpleControl.hxx │ ├── pimpleControlI.hxx │ ├── pimpleLoop.hxx │ ├── pimpleLoopI.hxx │ ├── pimpleMultiRegionControl.hxx │ ├── pimpleMultiRegionControlI.hxx │ ├── pimpleNoLoopControl.hxx │ ├── pimpleNoLoopControlI.hxx │ ├── pisoControl.hxx │ ├── pisoControlI.hxx │ ├── plenumPressureFvPatchScalarField.hxx │ ├── pointConstraints.hxx │ ├── pointConstraintsI.hxx │ ├── pointLinear.hxx │ ├── pointMVCWeight.hxx │ ├── pointMVCWeightI.hxx │ ├── porosityModel.hxx │ ├── porosityModelI.hxx │ ├── porosityModelList.hxx │ ├── powerLaw.hxx │ ├── powerLawI.hxx │ ├── pressureControl.hxx │ ├── pressureControlI.hxx │ ├── pressureDirectedInletOutletVelocityFvPatchVectorField.hxx │ ├── pressureDirectedInletVelocityFvPatchVectorField.hxx │ ├── pressureFvPatchScalarField.hxx │ ├── pressureInletOutletParSlipVelocityFvPatchVectorField.hxx │ ├── pressureInletOutletVelocityFvPatchVectorField.hxx │ ├── pressureInletUniformVelocityFvPatchVectorField.hxx │ ├── pressureInletVelocityFvPatchVectorField.hxx │ ├── pressureNormalInletOutletVelocityFvPatchVectorField.hxx │ ├── prghTotalHydrostaticPressureFvPatchScalarField.hxx │ ├── processorCyclicFvPatch.hxx │ ├── processorCyclicFvPatchField.hxx │ ├── processorCyclicFvPatchFieldI.hxx │ ├── processorCyclicFvPatchFields.hxx │ ├── processorCyclicFvPatchFieldsFwd.hxx │ ├── processorCyclicFvsPatchField.hxx │ ├── processorCyclicFvsPatchFieldI.hxx │ ├── processorCyclicFvsPatchFields.hxx │ ├── processorCyclicFvsPatchFieldsFwd.hxx │ ├── processorFvPatch.hxx │ ├── processorFvPatchField.hxx │ ├── processorFvPatchFieldI.hxx │ ├── processorFvPatchFields.hxx │ ├── processorFvPatchFieldsFwd.hxx │ ├── processorFvPatchScalarField.hxx │ ├── processorFvsPatchField.hxx │ ├── processorFvsPatchFieldI.hxx │ ├── processorFvsPatchFields.hxx │ ├── processorFvsPatchFieldsFwd.hxx │ ├── pureUpwindCFCCellToFaceStencilObject.hxx │ ├── quadraticFitPolynomial.hxx │ ├── quadraticLinearFitPolynomial.hxx │ ├── quadraticLinearUpwindFitPolynomial.hxx │ ├── quadraticUpwindFitPolynomial.hxx │ ├── readGravitationalAcceleration.lxx │ ├── readTimeControls.lxx │ ├── readhRef.lxx │ ├── readpRef.lxx │ ├── regionCoupledBaseFvPatch.hxx │ ├── regionCoupledFvPatch.hxx │ ├── regionCoupledWallFvPatch.hxx │ ├── reverseLinear.hxx │ ├── rhoEqn.lxx │ ├── rotatingPressureInletOutletVelocityFvPatchVectorField.hxx │ ├── rotatingTotalPressureFvPatchScalarField.hxx │ ├── rotatingWallVelocityFvPatchVectorField.hxx │ ├── rpm.hxx │ ├── setDeltaT.lxx │ ├── setInitialDeltaT.lxx │ ├── simpleControl.hxx │ ├── singleCellFvMesh.hxx │ ├── singleCellFvMeshInterpolate_Imp.hxx │ ├── singleRegionConvergenceControl.hxx │ ├── singleRegionCorrectorConvergenceControl.hxx │ ├── singleRegionSolutionControl.hxx │ ├── singleRegionSolutionControlI.hxx │ ├── singleRegionSolutionControlTemplatesI.hxx │ ├── skewCorrected.hxx │ ├── skewCorrectionVectors.hxx │ ├── slicedFvPatchField.hxx │ ├── slicedFvPatchFieldI.hxx │ ├── slicedFvPatchFields.hxx │ ├── slicedFvPatchFieldsFwd.hxx │ ├── slicedFvsPatchField.hxx │ ├── slicedFvsPatchFieldI.hxx │ ├── slicedFvsPatchFields.hxx │ ├── slicedFvsPatchFieldsFwd.hxx │ ├── slicedSurfaceFields.hxx │ ├── slicedSurfaceFieldsFwd.hxx │ ├── slicedVolFields.hxx │ ├── slicedVolFieldsFwd.hxx │ ├── slipFvPatchField.hxx │ ├── slipFvPatchFieldI.hxx │ ├── slipFvPatchFields.hxx │ ├── slipFvPatchFieldsFwd.hxx │ ├── smoothData.hxx │ ├── smoothDataI.hxx │ ├── snGradScheme.hxx │ ├── snGradSchemeI.hxx │ ├── solidNoLoopControl.hxx │ ├── solidification.hxx │ ├── solidificationI.hxx │ ├── solutionControl.hxx │ ├── solutionControlI.hxx │ ├── steadyStateD2dt2Scheme.hxx │ ├── steadyStateD2dt2SchemeI.hxx │ ├── steadyStateDdtScheme.hxx │ ├── steadyStateDdtSchemeI.hxx │ ├── supersonicFreestreamFvPatchVectorField.hxx │ ├── surfaceFields.hxx │ ├── surfaceFieldsFwd.hxx │ ├── surfaceInterpolate.hxx │ ├── surfaceInterpolateI.hxx │ ├── surfaceInterpolation.hxx │ ├── surfaceInterpolationScheme.hxx │ ├── surfaceInterpolationSchemeI.hxx │ ├── surfaceMesh.hxx │ ├── surfaceNormalFixedValueFvPatchVectorField.hxx │ ├── surfaceNormalUniformFixedValueFvPatchVectorField.hxx │ ├── sweepData.hxx │ ├── sweepDataI.hxx │ ├── swirlFlowRateInletVelocityFvPatchVectorField.hxx │ ├── swirlInletVelocityFvPatchVectorField.hxx │ ├── symmetryFvPatch.hxx │ ├── symmetryFvPatchField.hxx │ ├── symmetryFvPatchFieldI.hxx │ ├── symmetryFvPatchFields.hxx │ ├── symmetryFvPatchFieldsFwd.hxx │ ├── symmetryFvsPatchField.hxx │ ├── symmetryFvsPatchFieldI.hxx │ ├── symmetryFvsPatchFields.hxx │ ├── symmetryFvsPatchFieldsFwd.hxx │ ├── symmetryPlaneFvPatch.hxx │ ├── symmetryPlaneFvPatchField.hxx │ ├── symmetryPlaneFvPatchFieldI.hxx │ ├── symmetryPlaneFvPatchFields.hxx │ ├── symmetryPlaneFvPatchFieldsFwd.hxx │ ├── symmetryPlaneFvsPatchField.hxx │ ├── symmetryPlaneFvsPatchFieldI.hxx │ ├── symmetryPlaneFvsPatchFields.hxx │ ├── symmetryPlaneFvsPatchFieldsFwd.hxx │ ├── syringePressureFvPatchScalarField.hxx │ ├── timeVaryingMappedFixedValueFvPatchField.hxx │ ├── timeVaryingMappedFixedValueFvPatchFieldI.hxx │ ├── timeVaryingMappedFixedValueFvPatchFields.hxx │ ├── timeVaryingMappedFixedValueFvPatchFieldsFwd.hxx │ ├── timeVaryingMappedFvPatchField.hxx │ ├── timeVaryingMappedFvPatchFieldI.hxx │ ├── totalPressureFvPatchScalarField.hxx │ ├── totalTemperatureFvPatchScalarField.hxx │ ├── transformFvPatchField.hxx │ ├── transformFvPatchFieldI.hxx │ ├── transformFvPatchFields.hxx │ ├── transformFvPatchFieldsFwd.hxx │ ├── translatingWallVelocityFvPatchVectorField.hxx │ ├── turbulentInletFvPatchField.hxx │ ├── turbulentInletFvPatchFieldI.hxx │ ├── turbulentInletFvPatchFields.hxx │ ├── turbulentInletFvPatchFieldsFwd.hxx │ ├── turbulentIntensityKineticEnergyInletFvPatchScalarField.hxx │ ├── uncorrectedSnGrad.hxx │ ├── uncorrectedSnGradI.hxx │ ├── uniformDensityHydrostaticPressureFvPatchScalarField.hxx │ ├── uniformFixedGradientFvPatchField.hxx │ ├── uniformFixedGradientFvPatchFieldI.hxx │ ├── uniformFixedGradientFvPatchFields.hxx │ ├── uniformFixedGradientFvPatchFieldsFwd.hxx │ ├── uniformFixedValueFvPatchField.hxx │ ├── uniformFixedValueFvPatchFieldI.hxx │ ├── uniformFixedValueFvPatchFields.hxx │ ├── uniformFixedValueFvPatchFieldsFwd.hxx │ ├── uniformInletOutletFvPatchField.hxx │ ├── uniformInletOutletFvPatchFieldI.hxx │ ├── uniformInletOutletFvPatchFields.hxx │ ├── uniformInletOutletFvPatchFieldsFwd.hxx │ ├── uniformJumpAMIFvPatchField.hxx │ ├── uniformJumpAMIFvPatchFieldI.hxx │ ├── uniformJumpAMIFvPatchFields.hxx │ ├── uniformJumpAMIFvPatchFieldsFwd.hxx │ ├── uniformJumpFvPatchField.hxx │ ├── uniformJumpFvPatchFieldI.hxx │ ├── uniformJumpFvPatchFields.hxx │ ├── uniformJumpFvPatchFieldsFwd.hxx │ ├── uniformTotalPressureFvPatchScalarField.hxx │ ├── updateRhoUf.lxx │ ├── updateUf.lxx │ ├── upwind.hxx │ ├── upwindCECCellToFaceStencilObject.hxx │ ├── upwindCFCCellToFaceStencilObject.hxx │ ├── upwindCPCCellToFaceStencilObject.hxx │ ├── upwindFECCellToFaceStencilObject.hxx │ ├── vanAlbada.hxx │ ├── vanLeer.hxx │ ├── variableHeightFlowRateFvPatchField.hxx │ ├── variableHeightFlowRateInletVelocityFvPatchVectorField.hxx │ ├── volContinuity.lxx │ ├── volFields.hxx │ ├── volFieldsFwd.hxx │ ├── volFieldsI.hxx │ ├── volMesh.hxx │ ├── volPointInterpolate_Imp.hxx │ ├── volPointInterpolation.hxx │ ├── volRegion.hxx │ ├── volRegionI.hxx │ ├── wallDist.hxx │ ├── wallDistData.hxx │ ├── wallDistDataI.hxx │ ├── wallFvPatch.hxx │ ├── wallPointYPlus.hxx │ ├── wallPointYPlusI.hxx │ ├── waveSurfacePressureFvPatchScalarField.hxx │ ├── waveTransmissiveFvPatchField.hxx │ ├── waveTransmissiveFvPatchFieldI.hxx │ ├── waveTransmissiveFvPatchFields.hxx │ ├── waveTransmissiveFvPatchFieldsFwd.hxx │ ├── wedgeFvPatch.hxx │ ├── wedgeFvPatchField.hxx │ ├── wedgeFvPatchFieldI.hxx │ ├── wedgeFvPatchFields.hxx │ ├── wedgeFvPatchFieldsFwd.hxx │ ├── wedgeFvsPatchField.hxx │ ├── wedgeFvsPatchFieldI.hxx │ ├── wedgeFvsPatchFields.hxx │ ├── wedgeFvsPatchFieldsFwd.hxx │ ├── weighted.hxx │ ├── zeroGradientFvPatchField.hxx │ ├── zeroGradientFvPatchFieldI.hxx │ ├── zeroGradientFvPatchFields.hxx │ └── zeroGradientFvPatchFieldsFwd.hxx ├── TnbFoamyMesh ├── TnbFoamyMesh.vcxproj ├── TnbFoamyMesh.vcxproj.filters ├── TnbLib │ └── foamyMesh │ │ ├── conformalVoronoi2DMesh │ │ └── cv2DControls │ │ │ ├── cv2DControls.cxx │ │ │ ├── cv2DControls.hxx │ │ │ └── cv2DControlsI.hxx │ │ ├── conformalVoronoiMesh │ │ ├── DelaunayMesh │ │ │ ├── DelaunayMesh.cxx-backup │ │ │ ├── DelaunayMesh.hxx │ │ │ ├── DelaunayMeshI.hxx │ │ │ ├── DelaunayMeshIO.cxx-backup │ │ │ ├── DelaunayMeshIO_Imp.hxx │ │ │ ├── DelaunayMesh_Imp.hxx │ │ │ ├── DistributedDelaunayMesh.cxx-backup │ │ │ ├── DistributedDelaunayMesh.hxx │ │ │ └── DistributedDelaunayMeshI.hxx │ │ ├── DelaunayMeshTools │ │ │ ├── DelaunayMeshTools.cxx │ │ │ ├── DelaunayMeshTools.hxx │ │ │ ├── DelaunayMeshToolsI.hxx │ │ │ └── DelaunayMeshToolsTemplates.cxx-backup │ │ ├── PrintTable │ │ │ ├── PrintTable.cxx-backup │ │ │ ├── PrintTable.hxx │ │ │ ├── PrintTableI.hxx │ │ │ └── PrintTable_Imp.hxx │ │ ├── backgroundMeshDecomposition │ │ │ ├── backgroundMeshDecomposition.cxx │ │ │ ├── backgroundMeshDecomposition.hxx │ │ │ ├── backgroundMeshDecompositionI.hxx │ │ │ ├── backgroundMeshDecompositionTemplates.cxx-backup │ │ │ └── backgroundMeshDecompositionTemplates.hxx │ │ ├── cellShapeControl │ │ │ ├── cellAspectRatioControl │ │ │ │ ├── cellAspectRatioControl.cxx │ │ │ │ └── cellAspectRatioControl.hxx │ │ │ ├── cellShapeControl │ │ │ │ ├── cellShapeControl.cxx │ │ │ │ ├── cellShapeControl.hxx │ │ │ │ └── cellShapeControlI.hxx │ │ │ ├── cellShapeControlMesh │ │ │ │ ├── cellShapeControlMesh.cxx │ │ │ │ ├── cellShapeControlMesh.hxx │ │ │ │ └── cellShapeControlMeshI.hxx │ │ │ ├── cellSizeAndAlignmentControl │ │ │ │ ├── cellSizeAndAlignmentControl │ │ │ │ │ ├── cellSizeAndAlignmentControl.cxx │ │ │ │ │ └── cellSizeAndAlignmentControl.hxx │ │ │ │ ├── cellSizeAndAlignmentControls.cxx │ │ │ │ ├── cellSizeAndAlignmentControls.hxx │ │ │ │ ├── fileControl │ │ │ │ │ ├── fileControl.cxx │ │ │ │ │ └── fileControl.hxx │ │ │ │ └── searchableSurfaceControl │ │ │ │ │ ├── searchableSurfaceControl.cxx │ │ │ │ │ └── searchableSurfaceControl.hxx │ │ │ ├── controlMeshRefinement │ │ │ │ ├── controlMeshRefinement.cxx │ │ │ │ └── controlMeshRefinement.hxx │ │ │ └── smoothAlignmentSolver │ │ │ │ ├── smoothAlignmentSolver.cxx │ │ │ │ └── smoothAlignmentSolver.hxx │ │ ├── cellSizeControlSurfaces │ │ │ ├── cellSizeFunction │ │ │ │ ├── cellSizeFunction │ │ │ │ │ ├── cellSizeFunction.cxx │ │ │ │ │ └── cellSizeFunction.hxx │ │ │ │ ├── linearDistance │ │ │ │ │ ├── linearDistance.cxx │ │ │ │ │ └── linearDistance.hxx │ │ │ │ ├── linearSpatial │ │ │ │ │ ├── linearSpatial.cxx │ │ │ │ │ └── linearSpatial.hxx │ │ │ │ ├── surfaceOffsetLinearDistance │ │ │ │ │ ├── surfaceOffsetLinearDistance.cxx │ │ │ │ │ └── surfaceOffsetLinearDistance.hxx │ │ │ │ ├── uniform │ │ │ │ │ ├── uniform.cxx │ │ │ │ │ └── uniform.hxx │ │ │ │ └── uniformDistance │ │ │ │ │ ├── uniformDistance.cxx │ │ │ │ │ └── uniformDistance.hxx │ │ │ └── surfaceCellSizeFunction │ │ │ │ ├── cellSizeCalculationType │ │ │ │ ├── automatic │ │ │ │ │ ├── automatic.cxx │ │ │ │ │ └── automatic.hxx │ │ │ │ ├── cellSizeCalculationType │ │ │ │ │ ├── cellSizeCalculationType.cxx │ │ │ │ │ └── cellSizeCalculationType.hxx │ │ │ │ └── fieldFromFile │ │ │ │ │ ├── fieldFromFile.cxx │ │ │ │ │ └── fieldFromFile.hxx │ │ │ │ ├── nonUniformField │ │ │ │ ├── nonUniformField.cxx │ │ │ │ └── nonUniformField.hxx │ │ │ │ ├── surfaceCellSizeFunction │ │ │ │ ├── surfaceCellSizeFunction.cxx │ │ │ │ └── surfaceCellSizeFunction.hxx │ │ │ │ └── uniformValue │ │ │ │ ├── uniformValue.cxx │ │ │ │ └── uniformValue.hxx │ │ ├── conformalVoronoiMesh │ │ │ ├── CGALTriangulation3DKernel.hxx │ │ │ ├── CGALTriangulation3Ddefs.hxx │ │ │ ├── conformalVoronoiMesh.cxx │ │ │ ├── conformalVoronoiMesh.hxx │ │ │ ├── conformalVoronoiMeshCalcDualMesh.cxx │ │ │ ├── conformalVoronoiMeshConformToSurface.cxx │ │ │ ├── conformalVoronoiMeshFeaturePoints.cxx │ │ │ ├── conformalVoronoiMeshI.hxx │ │ │ ├── conformalVoronoiMeshIO.cxx │ │ │ ├── conformalVoronoiMeshNames.cxx │ │ │ ├── conformalVoronoiMeshTemplates.cxx-backup │ │ │ ├── conformalVoronoiMeshTemplatesI.hxx │ │ │ ├── conformalVoronoiMeshZones.cxx │ │ │ ├── featurePointConformer │ │ │ │ ├── featurePointConformer.cxx │ │ │ │ ├── featurePointConformer.hxx │ │ │ │ ├── featurePointConformerI.hxx │ │ │ │ ├── featurePointConformerSpecialisations.cxx │ │ │ │ ├── pointFeatureEdgesTypes.cxx │ │ │ │ └── pointFeatureEdgesTypes.hxx │ │ │ ├── indexedCell │ │ │ │ ├── indexedCell.cxx-backup │ │ │ │ ├── indexedCell.hxx │ │ │ │ ├── indexedCellChecks.cxx-backup │ │ │ │ ├── indexedCellChecks.hxx │ │ │ │ ├── indexedCellChecksI.hxx │ │ │ │ ├── indexedCellEnum.cxx │ │ │ │ ├── indexedCellEnum.hxx │ │ │ │ ├── indexedCellI.hxx │ │ │ │ ├── indexedCellOps.hxx │ │ │ │ ├── indexedCellOpsI.hxx │ │ │ │ ├── indexedCellOpsTemplates.cxx-backup │ │ │ │ └── indexedCell_Imp.hxx │ │ │ ├── indexedVertex │ │ │ │ ├── indexedVertex.cxx │ │ │ │ ├── indexedVertex.hxx │ │ │ │ ├── indexedVertexEnum.cxx │ │ │ │ ├── indexedVertexEnum.hxx │ │ │ │ ├── indexedVertexEnumNames.cxx │ │ │ │ ├── indexedVertexI.hxx │ │ │ │ ├── indexedVertexOps.hxx │ │ │ │ ├── indexedVertexOpsI.hxx │ │ │ │ ├── indexedVertexOpsTemplates.cxx-backup │ │ │ │ └── indexedVertex_Imp.hxx │ │ │ └── pointConversion.hxx │ │ ├── conformationSurfaces │ │ │ ├── conformationSurfaces.cxx │ │ │ ├── conformationSurfaces.hxx │ │ │ └── conformationSurfacesI.hxx │ │ ├── cvControls │ │ │ ├── cvControls.cxx │ │ │ ├── cvControls.hxx │ │ │ └── cvControlsI.hxx │ │ ├── faceAreaWeightModel │ │ │ ├── faceAreaWeightModel │ │ │ │ ├── faceAreaWeightModel.cxx │ │ │ │ └── faceAreaWeightModel.hxx │ │ │ └── piecewiseLinearRamp │ │ │ │ ├── piecewiseLinearRamp.cxx │ │ │ │ └── piecewiseLinearRamp.hxx │ │ ├── initialPointsMethod │ │ │ ├── autoDensity │ │ │ │ ├── autoDensity.cxx │ │ │ │ └── autoDensity.hxx │ │ │ ├── bodyCentredCubic │ │ │ │ ├── bodyCentredCubic.cxx │ │ │ │ └── bodyCentredCubic.hxx │ │ │ ├── faceCentredCubic │ │ │ │ ├── faceCentredCubic.cxx │ │ │ │ └── faceCentredCubic.hxx │ │ │ ├── initialPointsMethod │ │ │ │ ├── initialPointsMethod.cxx │ │ │ │ └── initialPointsMethod.hxx │ │ │ ├── pointFile │ │ │ │ ├── pointFile.cxx │ │ │ │ └── pointFile.hxx │ │ │ ├── rayShooting │ │ │ │ ├── rayShooting.cxx │ │ │ │ └── rayShooting.hxx │ │ │ └── uniformGrid │ │ │ │ ├── uniformGrid.cxx │ │ │ │ └── uniformGrid.hxx │ │ ├── pointPairs │ │ │ ├── pointPairs.cxx-backup │ │ │ ├── pointPairs.hxx │ │ │ └── pointPairsI.hxx │ │ ├── relaxationModel │ │ │ ├── adaptiveLinear │ │ │ │ ├── adaptiveLinear.cxx │ │ │ │ └── adaptiveLinear.hxx │ │ │ ├── rampHoldFall │ │ │ │ ├── rampHoldFall.cxx │ │ │ │ └── rampHoldFall.hxx │ │ │ └── relaxationModel │ │ │ │ ├── relaxationModel.cxx │ │ │ │ └── relaxationModel.hxx │ │ ├── searchableSurfaceFeatures │ │ │ ├── searchableBoxFeatures.cxx │ │ │ ├── searchableBoxFeatures.hxx │ │ │ ├── searchablePlateFeatures.cxx │ │ │ ├── searchablePlateFeatures.hxx │ │ │ ├── searchableSurfaceFeatures.cxx │ │ │ ├── searchableSurfaceFeatures.hxx │ │ │ ├── triSurfaceMeshFeatures.cxx │ │ │ └── triSurfaceMeshFeatures.hxx │ │ └── vectorTools │ │ │ └── vectorTools.hxx │ │ ├── foamyQuadMesh │ │ ├── CGALTriangulation2DKernel.hxx │ │ ├── CGALTriangulation2Ddefs.hxx │ │ ├── CV2D.cxx │ │ ├── CV2D.hxx │ │ ├── CV2DI.hxx │ │ ├── CV2DIO.cxx │ │ ├── indexedFace2D.cxx │ │ ├── indexedFace2D.hxx │ │ ├── indexedFace2DI.hxx │ │ ├── indexedVertex2D.cxx │ │ ├── indexedVertex2D.hxx │ │ ├── indexedVertex2DI.hxx │ │ ├── insertBoundaryConformPointPairs.cxx │ │ ├── insertFeaturePoints.cxx │ │ ├── insertSurfaceNearPointPairs.cxx │ │ ├── insertSurfaceNearestPointPairs.cxx │ │ ├── shortEdgeFilter2D.cxx │ │ └── shortEdgeFilter2D.hxx │ │ └── module │ │ └── FoamyMesh_Module.hxx └── include │ ├── CGALTriangulation2DKernel.hxx │ ├── CGALTriangulation2Ddefs.hxx │ ├── CGALTriangulation3DKernel.hxx │ ├── CGALTriangulation3Ddefs.hxx │ ├── CV2D.hxx │ ├── CV2DI.hxx │ ├── DelaunayMesh.hxx │ ├── DelaunayMeshI.hxx │ ├── DelaunayMeshIO_Imp.hxx │ ├── DelaunayMeshTools.hxx │ ├── DelaunayMeshToolsI.hxx │ ├── DelaunayMesh_Imp.hxx │ ├── DistributedDelaunayMesh.hxx │ ├── DistributedDelaunayMeshI.hxx │ ├── FoamyMesh_Module.hxx │ ├── PrintTable.hxx │ ├── PrintTableI.hxx │ ├── PrintTable_Imp.hxx │ ├── adaptiveLinear.hxx │ ├── autoDensity.hxx │ ├── automatic.hxx │ ├── backgroundMeshDecomposition.hxx │ ├── backgroundMeshDecompositionI.hxx │ ├── backgroundMeshDecompositionTemplates.hxx │ ├── bodyCentredCubic.hxx │ ├── cellAspectRatioControl.hxx │ ├── cellShapeControl.hxx │ ├── cellShapeControlI.hxx │ ├── cellShapeControlMesh.hxx │ ├── cellShapeControlMeshI.hxx │ ├── cellSizeAndAlignmentControl.hxx │ ├── cellSizeAndAlignmentControls.hxx │ ├── cellSizeCalculationType.hxx │ ├── cellSizeFunction.hxx │ ├── conformalVoronoiMesh.hxx │ ├── conformalVoronoiMeshI.hxx │ ├── conformalVoronoiMeshTemplatesI.hxx │ ├── conformationSurfaces.hxx │ ├── conformationSurfacesI.hxx │ ├── controlMeshRefinement.hxx │ ├── cv2DControls.hxx │ ├── cv2DControlsI.hxx │ ├── cvControls.hxx │ ├── cvControlsI.hxx │ ├── faceAreaWeightModel.hxx │ ├── faceCentredCubic.hxx │ ├── featurePointConformer.hxx │ ├── featurePointConformerI.hxx │ ├── fieldFromFile.hxx │ ├── fileControl.hxx │ ├── indexedCell.hxx │ ├── indexedCellChecks.hxx │ ├── indexedCellChecksI.hxx │ ├── indexedCellEnum.hxx │ ├── indexedCellI.hxx │ ├── indexedCellOps.hxx │ ├── indexedCellOpsI.hxx │ ├── indexedCell_Imp.hxx │ ├── indexedFace2D.hxx │ ├── indexedFace2DI.hxx │ ├── indexedVertex.hxx │ ├── indexedVertex2D.hxx │ ├── indexedVertex2DI.hxx │ ├── indexedVertexEnum.hxx │ ├── indexedVertexI.hxx │ ├── indexedVertexOps.hxx │ ├── indexedVertexOpsI.hxx │ ├── indexedVertex_Imp.hxx │ ├── initialPointsMethod.hxx │ ├── linearDistance.hxx │ ├── linearSpatial.hxx │ ├── nonUniformField.hxx │ ├── piecewiseLinearRamp.hxx │ ├── pointConversion.hxx │ ├── pointFeatureEdgesTypes.hxx │ ├── pointFile.hxx │ ├── pointPairs.hxx │ ├── pointPairsI.hxx │ ├── rampHoldFall.hxx │ ├── rayShooting.hxx │ ├── relaxationModel.hxx │ ├── searchableBoxFeatures.hxx │ ├── searchablePlateFeatures.hxx │ ├── searchableSurfaceControl.hxx │ ├── searchableSurfaceFeatures.hxx │ ├── shortEdgeFilter2D.hxx │ ├── smoothAlignmentSolver.hxx │ ├── surfaceCellSizeFunction.hxx │ ├── surfaceOffsetLinearDistance.hxx │ ├── triSurfaceMeshFeatures.hxx │ ├── uniform.hxx │ ├── uniformDistance.hxx │ ├── uniformGrid.hxx │ ├── uniformValue.hxx │ └── vectorTools.hxx ├── TnbFunctionObjects ├── TnbFunctionObjects.vcxproj ├── TnbFunctionObjects.vcxproj.filters ├── TnbLib │ └── functionObjects │ │ ├── Allwmake │ │ ├── field │ │ ├── CourantNo │ │ │ ├── CourantNo.cxx │ │ │ └── CourantNo.hxx │ │ ├── Lambda2 │ │ │ ├── Lambda2.cxx │ │ │ └── Lambda2.hxx │ │ ├── MachNo │ │ │ ├── MachNo.cxx │ │ │ └── MachNo.hxx │ │ ├── PecletNo │ │ │ ├── PecletNo.cxx │ │ │ ├── PecletNo.hxx │ │ │ ├── pressure.cxx │ │ │ └── pressure.hxx │ │ ├── Q │ │ │ ├── Q.cxx │ │ │ └── Q.hxx │ │ ├── XiReactionRate │ │ │ ├── XiReactionRate.cxx │ │ │ └── XiReactionRate.hxx │ │ ├── _log │ │ │ ├── log.cxx │ │ │ └── log.hxx │ │ ├── add │ │ │ ├── add.cxx │ │ │ ├── add.hxx │ │ │ ├── addTemplates.cxx │ │ │ └── addTemplates.hxx │ │ ├── age │ │ │ ├── age.cxx │ │ │ └── age.hxx │ │ ├── blendingFactor │ │ │ ├── blendingFactor.cxx │ │ │ ├── blendingFactor.hxx │ │ │ ├── blendingFactorTemplates.cxx │ │ │ └── blendingFactorTemplates.hxx │ │ ├── components │ │ │ ├── components.cxx │ │ │ ├── components.hxx │ │ │ ├── componentsTemplates.cxx │ │ │ └── componentsTemplates.hxx │ │ ├── ddt │ │ │ ├── ddt.cxx │ │ │ ├── ddt.hxx │ │ │ ├── ddtTemplates.cxx │ │ │ └── ddtTemplates.hxx │ │ ├── div │ │ │ ├── div.cxx │ │ │ ├── div.hxx │ │ │ ├── divTemplates.cxx │ │ │ └── divTemplates.hxx │ │ ├── enstrophy │ │ │ ├── enstrophy.cxx │ │ │ └── enstrophy.hxx │ │ ├── fieldAverage │ │ │ ├── fieldAverage.cxx │ │ │ ├── fieldAverage.hxx │ │ │ ├── fieldAverageItem │ │ │ │ ├── fieldAverageItem.cxx │ │ │ │ ├── fieldAverageItem.hxx │ │ │ │ └── fieldAverageItemIO.cxx │ │ │ ├── fieldAverageTemplates.cxx │ │ │ └── fieldAverageTemplates.hxx │ │ ├── fieldCoordinateSystemTransform │ │ │ ├── fieldCoordinateSystemTransform.cxx │ │ │ ├── fieldCoordinateSystemTransform.hxx │ │ │ ├── fieldCoordinateSystemTransformTemplates.cxx │ │ │ ├── fieldCoordinateSystemTransformTemplates.hxx │ │ │ └── postProcessingDict │ │ ├── fieldExpression │ │ │ ├── fieldExpression.cxx │ │ │ ├── fieldExpression.hxx │ │ │ ├── fieldExpressionTemplates.cxx │ │ │ └── fieldExpressionTemplates.hxx │ │ ├── fieldMinMax │ │ │ ├── fieldMinMax.cxx │ │ │ ├── fieldMinMax.hxx │ │ │ ├── fieldMinMaxTemplates.cxx │ │ │ └── fieldMinMaxTemplates.hxx │ │ ├── fieldValues │ │ │ ├── fieldValue │ │ │ │ ├── fieldValue.cxx │ │ │ │ ├── fieldValue.hxx │ │ │ │ ├── fieldValueI.hxx │ │ │ │ ├── fieldValueNew.cxx │ │ │ │ ├── fieldValueTemplates.cxx │ │ │ │ └── fieldValueTemplates.hxx │ │ │ ├── fieldValueDelta │ │ │ │ ├── fieldValueDelta.cxx │ │ │ │ ├── fieldValueDelta.hxx │ │ │ │ ├── fieldValueDeltaTemplates.cxx │ │ │ │ └── fieldValueDeltaTemplates.hxx │ │ │ ├── surfaceFieldValue │ │ │ │ ├── surfaceFieldValue.cxx │ │ │ │ ├── surfaceFieldValue.hxx │ │ │ │ ├── surfaceFieldValueI.hxx │ │ │ │ ├── surfaceFieldValueIO.cxx │ │ │ │ ├── surfaceFieldValueTemplates.cxx │ │ │ │ └── surfaceFieldValueTemplates.hxx │ │ │ └── volFieldValue │ │ │ │ ├── volFieldValue.cxx │ │ │ │ ├── volFieldValue.hxx │ │ │ │ ├── volFieldValueIO.cxx │ │ │ │ ├── volFieldValueTemplates.cxx │ │ │ │ └── volFieldValueTemplates.hxx │ │ ├── fieldsExpression │ │ │ ├── fieldsExpression.cxx │ │ │ ├── fieldsExpression.hxx │ │ │ ├── fieldsExpressionTemplates.cxx │ │ │ └── fieldsExpressionTemplates.hxx │ │ ├── flowType │ │ │ ├── flowType.cxx │ │ │ └── flowType.hxx │ │ ├── grad │ │ │ ├── grad.cxx │ │ │ ├── grad.hxx │ │ │ ├── gradTemplates.cxx │ │ │ └── gradTemplates.hxx │ │ ├── histogram │ │ │ ├── histogram.cxx │ │ │ └── histogram.hxx │ │ ├── interfaceHeight │ │ │ ├── interfaceHeight.cxx │ │ │ └── interfaceHeight.hxx │ │ ├── mag │ │ │ ├── mag.cxx │ │ │ ├── mag.hxx │ │ │ ├── magTemplates.cxx │ │ │ └── magTemplates.hxx │ │ ├── magSqr │ │ │ ├── magSqr.cxx │ │ │ ├── magSqr.hxx │ │ │ ├── magSqrTemplates.cxx │ │ │ └── magSqrTemplates.hxx │ │ ├── nearWallFields │ │ │ ├── findCellParticle.cxx │ │ │ ├── findCellParticle.hxx │ │ │ ├── findCellParticleCloud.cxx │ │ │ ├── nearWallFields.cxx │ │ │ ├── nearWallFields.hxx │ │ │ ├── nearWallFieldsTemplates.cxx │ │ │ └── nearWallFieldsTemplates.hxx │ │ ├── processorField │ │ │ ├── postProcessingDict │ │ │ ├── processorField.cxx │ │ │ └── processorField.hxx │ │ ├── randomise │ │ │ ├── randomise.cxx │ │ │ ├── randomise.hxx │ │ │ ├── randomiseTemplates.cxx │ │ │ └── randomiseTemplates.hxx │ │ ├── readFields │ │ │ ├── postProcessingDict │ │ │ ├── readFields.cxx │ │ │ ├── readFields.hxx │ │ │ ├── readFieldsI.hxx │ │ │ └── readFieldsTemplates.cxx-backup │ │ ├── regionSizeDistribution │ │ │ ├── regionSizeDistribution.cxx │ │ │ ├── regionSizeDistribution.hxx │ │ │ ├── regionSizeDistributionTemplates.cxx │ │ │ └── regionSizeDistributionTemplates.hxx │ │ ├── scale │ │ │ ├── scale.cxx │ │ │ ├── scale.hxx │ │ │ ├── scaleTemplates.cxx │ │ │ └── scaleTemplates.hxx │ │ ├── streamFunction │ │ │ ├── streamFunction.cxx │ │ │ └── streamFunction.hxx │ │ ├── streamLine │ │ │ ├── streamLine.cxx │ │ │ ├── streamLine.hxx │ │ │ ├── streamLineIO.cxx │ │ │ ├── streamLineParticle.cxx │ │ │ ├── streamLineParticle.hxx │ │ │ ├── streamLineParticleCloud.cxx │ │ │ └── streamLineParticleCloud.hxx │ │ ├── subtract │ │ │ ├── subtract.cxx │ │ │ ├── subtract.hxx │ │ │ ├── subtractTemplates.cxx │ │ │ └── subtractTemplates.hxx │ │ ├── surfaceInterpolate │ │ │ ├── surfaceInterpolateFunObj.cxx │ │ │ ├── surfaceInterpolateFunObj.hxx │ │ │ ├── surfaceInterpolateFunObjTemplates.cxx │ │ │ └── surfaceInterpolateFunObjTemplates.hxx │ │ ├── turbulenceFields │ │ │ ├── postProcessingDict │ │ │ ├── turbulenceFields.cxx │ │ │ ├── turbulenceFields.hxx │ │ │ ├── turbulenceFieldsTemplates.cxx │ │ │ └── turbulenceFieldsTemplates.hxx │ │ ├── turbulenceIntensity │ │ │ ├── turbulenceIntensity.cxx │ │ │ └── turbulenceIntensity.hxx │ │ ├── vorticity │ │ │ ├── vorticity.cxx │ │ │ └── vorticity.hxx │ │ ├── wallHeatFlux │ │ │ ├── wallHeatFlux.cxx │ │ │ └── wallHeatFlux.hxx │ │ ├── wallHeatTransferCoeff │ │ │ ├── wallHeatTransferCoeff.cxx │ │ │ └── wallHeatTransferCoeff.hxx │ │ ├── wallShearStress │ │ │ ├── wallShearStress.cxx │ │ │ └── wallShearStress.hxx │ │ ├── writeCellCentres │ │ │ ├── writeCellCentres.cxx │ │ │ └── writeCellCentres.hxx │ │ ├── writeCellVolumes │ │ │ ├── writeCellVolumes.cxx │ │ │ └── writeCellVolumes.hxx │ │ └── yPlus │ │ │ ├── yPlus.cxx │ │ │ └── yPlus.hxx │ │ ├── forces │ │ ├── forceCoeffs │ │ │ ├── forceCoeffs.cxx │ │ │ └── forceCoeffs.hxx │ │ └── forces │ │ │ ├── forces.cxx │ │ │ └── forces.hxx │ │ ├── lagrangian │ │ ├── cloudInfo │ │ │ ├── cloudInfo.cxx │ │ │ ├── cloudInfo.hxx │ │ │ └── postProcessingDict │ │ ├── dsmcFields │ │ │ ├── dsmcFields.cxx │ │ │ └── dsmcFields.hxx │ │ └── icoUncoupledKinematicCloud │ │ │ ├── icoUncoupledKinematicCloud.cxx │ │ │ └── icoUncoupledKinematicCloud.hxx │ │ ├── module │ │ └── FunctionObjects_Module.hxx │ │ ├── solvers │ │ ├── phaseScalarTransport │ │ │ ├── phaseScalarTransport.cxx │ │ │ └── phaseScalarTransport.hxx │ │ └── scalarTransport │ │ │ ├── scalarTransport.cxx │ │ │ └── scalarTransport.hxx │ │ └── utilities │ │ ├── abort │ │ ├── abort.cxx │ │ └── abort.hxx │ │ ├── codedFunctionObject │ │ ├── codedFunctionObject.cxx │ │ └── codedFunctionObject.hxx │ │ ├── removeRegisteredObject │ │ ├── removeRegisteredObject.cxx │ │ └── removeRegisteredObject.hxx │ │ ├── residuals │ │ ├── residuals.cxx │ │ ├── residuals.hxx │ │ ├── residualsTemplates.cxx │ │ └── residualsTemplates.hxx │ │ ├── setTimeStep │ │ ├── setTimeStepFunctionObject.cxx │ │ └── setTimeStepFunctionObject.hxx │ │ ├── systemCall │ │ ├── systemCall.cxx │ │ └── systemCall.hxx │ │ ├── time │ │ ├── timeFunctionObject.cxx │ │ └── timeFunctionObject.hxx │ │ ├── timeActivatedFileUpdate │ │ ├── timeActivatedFileUpdate.cxx │ │ └── timeActivatedFileUpdate.hxx │ │ ├── writeDictionary │ │ ├── writeDictionary.cxx │ │ └── writeDictionary.hxx │ │ └── writeObjects │ │ ├── writeObjects.cxx │ │ └── writeObjects.hxx └── include │ ├── CourantNo.hxx │ ├── FunctionObjects_Module.hxx │ ├── Lambda2.hxx │ ├── MachNo.hxx │ ├── PecletNo.hxx │ ├── Q.hxx │ ├── XiReactionRate.hxx │ ├── abort.hxx │ ├── add.hxx │ ├── addTemplates.hxx │ ├── age.hxx │ ├── blendingFactor.hxx │ ├── blendingFactorTemplates.hxx │ ├── cloudInfo.hxx │ ├── codedFunctionObject.hxx │ ├── components.hxx │ ├── componentsTemplates.hxx │ ├── ddt.hxx │ ├── ddtTemplates.hxx │ ├── div.hxx │ ├── divTemplates.hxx │ ├── dsmcFields.hxx │ ├── enstrophy.hxx │ ├── fieldAverage.hxx │ ├── fieldAverageItem.hxx │ ├── fieldAverageTemplates.hxx │ ├── fieldCoordinateSystemTransform.hxx │ ├── fieldCoordinateSystemTransformTemplates.hxx │ ├── fieldExpression.hxx │ ├── fieldExpressionTemplates.hxx │ ├── fieldMinMax.hxx │ ├── fieldMinMaxTemplates.hxx │ ├── fieldValue.hxx │ ├── fieldValueDelta.hxx │ ├── fieldValueDeltaTemplates.hxx │ ├── fieldValueI.hxx │ ├── fieldValueTemplates.hxx │ ├── fieldsExpression.hxx │ ├── fieldsExpressionTemplates.hxx │ ├── findCellParticle.hxx │ ├── flowType.hxx │ ├── forceCoeffs.hxx │ ├── forces.hxx │ ├── grad.hxx │ ├── gradTemplates.hxx │ ├── histogram.hxx │ ├── icoUncoupledKinematicCloud.hxx │ ├── interfaceHeight.hxx │ ├── log.hxx │ ├── mag.hxx │ ├── magSqr.hxx │ ├── magSqrTemplates.hxx │ ├── magTemplates.hxx │ ├── nearWallFields.hxx │ ├── nearWallFieldsTemplates.hxx │ ├── phaseScalarTransport.hxx │ ├── pressure.hxx │ ├── processorField.hxx │ ├── randomise.hxx │ ├── randomiseTemplates.hxx │ ├── readFields.hxx │ ├── readFieldsI.hxx │ ├── readFieldsTemplates.hxx │ ├── regionSizeDistribution.hxx │ ├── regionSizeDistributionTemplates.hxx │ ├── removeRegisteredObject.hxx │ ├── residuals.hxx │ ├── residualsTemplates.hxx │ ├── scalarTransport.hxx │ ├── scale.hxx │ ├── scaleTemplates.hxx │ ├── setTimeStepFunctionObject.hxx │ ├── streamFunction.hxx │ ├── streamLine.hxx │ ├── streamLineParticle.hxx │ ├── streamLineParticleCloud.hxx │ ├── subtract.hxx │ ├── subtractTemplates.hxx │ ├── surfaceFieldValue.hxx │ ├── surfaceFieldValueI.hxx │ ├── surfaceFieldValueTemplates.hxx │ ├── surfaceInterpolateFunObj.hxx │ ├── surfaceInterpolateFunObjTemplates.hxx │ ├── systemCall.hxx │ ├── timeActivatedFileUpdate.hxx │ ├── timeFunctionObject.hxx │ ├── turbulenceFields.hxx │ ├── turbulenceFieldsTemplates.hxx │ ├── turbulenceIntensity.hxx │ ├── volFieldValue.hxx │ ├── volFieldValueTemplates.hxx │ ├── vorticity.hxx │ ├── wallHeatFlux.hxx │ ├── wallHeatTransferCoeff.hxx │ ├── wallShearStress.hxx │ ├── writeCellCentres.hxx │ ├── writeCellVolumes.hxx │ ├── writeDictionary.hxx │ ├── writeObjects.hxx │ └── yPlus.hxx ├── TnbFvMesh ├── STLsurfaceFormatASCII.cxx ├── TnbFvMesh.vcxproj ├── TnbFvMesh.vcxproj.filters ├── TnbLib │ └── FvMesh │ │ ├── extrudeMesh │ │ ├── extrudedMesh.cxx │ │ ├── extrudedMesh.hxx │ │ ├── extrudedMeshI.hxx │ │ └── extrudedMeshTemplates.cxx-backup │ │ ├── fileFormats │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── coordSet │ │ │ ├── coordSet.cxx │ │ │ ├── coordSet.hxx │ │ │ └── coordSetNamedEnum.cxx │ │ ├── nas │ │ │ ├── NASCore.cxx │ │ │ └── NASCore.hxx │ │ ├── sampledSetWriters │ │ │ ├── csv │ │ │ │ ├── csvSetWriter.cxx-backup │ │ │ │ ├── csvSetWriter.hxx │ │ │ │ ├── csvSetWriterI.hxx │ │ │ │ └── csvSetWriterRunTime.cxx │ │ │ ├── ensight │ │ │ │ ├── ensightSetWriter.cxx-backup │ │ │ │ ├── ensightSetWriter.hxx │ │ │ │ ├── ensightSetWriterI.hxx │ │ │ │ └── ensightSetWriterRunTime.cxx │ │ │ ├── gnuplot │ │ │ │ ├── gnuplotSetWriter.cxx-backup │ │ │ │ ├── gnuplotSetWriter.hxx │ │ │ │ ├── gnuplotSetWriterI.hxx │ │ │ │ └── gnuplotSetWriterRunTime.cxx │ │ │ ├── jplot │ │ │ │ ├── jplotSetWriter.cxx-backup │ │ │ │ ├── jplotSetWriter.hxx │ │ │ │ ├── jplotSetWriterI.hxx │ │ │ │ └── jplotSetWriterRunTime.cxx │ │ │ ├── raw │ │ │ │ ├── rawSetWriter.cxx-backup │ │ │ │ ├── rawSetWriter.hxx │ │ │ │ ├── rawSetWriterI.hxx │ │ │ │ └── rawSetWriterRunTime.cxx │ │ │ ├── vtk │ │ │ │ ├── vtkSetWriter.cxx-backup │ │ │ │ ├── vtkSetWriter.hxx │ │ │ │ ├── vtkSetWriterI.hxx │ │ │ │ └── vtkSetWriterRunTime.cxx │ │ │ ├── writer.cxx-backup │ │ │ ├── writer.hxx │ │ │ ├── writerI.hxx │ │ │ ├── writers.cxx │ │ │ ├── writers.hxx │ │ │ └── xmgrace │ │ │ │ ├── xmgraceSetWriter.cxx-backup │ │ │ │ ├── xmgraceSetWriter.hxx │ │ │ │ └── xmgraceSetWriterI.hxx │ │ ├── starcd │ │ │ ├── STARCDCore.cxx │ │ │ └── STARCDCore.hxx │ │ └── vtk │ │ │ ├── vtkUnstructuredReader.cxx │ │ │ ├── vtkUnstructuredReader.hxx │ │ │ ├── vtkUnstructuredReaderI.hxx │ │ │ ├── vtkUnstructuredReaderNamedEnum.cxx │ │ │ └── vtkUnstructuredReaderTemplates.cxx-backup │ │ ├── mesh │ │ ├── Allwmake │ │ ├── blockMesh │ │ │ ├── blockDescriptor │ │ │ │ ├── blockDescriptor.cxx │ │ │ │ ├── blockDescriptor.hxx │ │ │ │ ├── blockDescriptorEdges.cxx │ │ │ │ ├── blockDescriptorI.hxx │ │ │ │ └── blockDescriptorTest.cxx │ │ │ ├── blockEdges │ │ │ │ ├── BSplineEdge │ │ │ │ │ ├── BSpline.cxx │ │ │ │ │ ├── BSpline.hxx │ │ │ │ │ ├── BSplineEdge.cxx │ │ │ │ │ └── BSplineEdge.hxx │ │ │ │ ├── arcEdge │ │ │ │ │ ├── arcEdge.cxx │ │ │ │ │ └── arcEdge.hxx │ │ │ │ ├── blockEdge │ │ │ │ │ ├── blockEdge.cxx │ │ │ │ │ ├── blockEdge.hxx │ │ │ │ │ ├── blockEdgeI.hxx │ │ │ │ │ └── blockEdgeList.hxx │ │ │ │ ├── lineDivide │ │ │ │ │ ├── lineDivide.cxx │ │ │ │ │ └── lineDivide.hxx │ │ │ │ ├── lineEdge │ │ │ │ │ ├── lineEdge.cxx │ │ │ │ │ └── lineEdge.hxx │ │ │ │ ├── polyLineEdge │ │ │ │ │ ├── polyLine.cxx │ │ │ │ │ ├── polyLine.hxx │ │ │ │ │ ├── polyLineEdge.cxx │ │ │ │ │ └── polyLineEdge.hxx │ │ │ │ ├── projectCurveEdge │ │ │ │ │ ├── projectCurveEdge.cxx │ │ │ │ │ └── projectCurveEdge.hxx │ │ │ │ ├── projectEdge │ │ │ │ │ ├── projectEdge.cxx │ │ │ │ │ └── projectEdge.hxx │ │ │ │ └── splineEdge │ │ │ │ │ ├── CatmullRomSpline.cxx │ │ │ │ │ ├── CatmullRomSpline.hxx │ │ │ │ │ ├── splineEdge.cxx │ │ │ │ │ └── splineEdge.hxx │ │ │ ├── blockFaces │ │ │ │ ├── blockFace │ │ │ │ │ ├── blockFace.cxx │ │ │ │ │ ├── blockFace.hxx │ │ │ │ │ ├── blockFaceI.hxx │ │ │ │ │ └── blockFaceList.hxx │ │ │ │ └── projectFace │ │ │ │ │ ├── projectFace.cxx │ │ │ │ │ └── projectFace.hxx │ │ │ ├── blockMesh │ │ │ │ ├── blockMesh.cxx │ │ │ │ ├── blockMesh.hxx │ │ │ │ ├── blockMeshCheck.cxx │ │ │ │ ├── blockMeshCreate.cxx │ │ │ │ ├── blockMeshMerge.cxx │ │ │ │ ├── blockMeshMergeFast.cxx │ │ │ │ └── blockMeshTopology.cxx │ │ │ ├── blockMeshTools │ │ │ │ ├── blockMeshTools.cxx │ │ │ │ ├── blockMeshTools.hxx │ │ │ │ ├── blockMeshToolsI.hxx │ │ │ │ └── blockMeshToolsTemplates.cxx-backup │ │ │ ├── blockVertices │ │ │ │ ├── blockVertex │ │ │ │ │ ├── blockVertex.cxx │ │ │ │ │ ├── blockVertex.hxx │ │ │ │ │ └── blockVertexList.hxx │ │ │ │ ├── namedVertex │ │ │ │ │ ├── namedVertex.cxx │ │ │ │ │ └── namedVertex.hxx │ │ │ │ ├── pointVertex │ │ │ │ │ ├── pointVertex.cxx │ │ │ │ │ └── pointVertex.hxx │ │ │ │ └── projectVertex │ │ │ │ │ ├── projectVertex.cxx │ │ │ │ │ └── projectVertex.hxx │ │ │ ├── blocks │ │ │ │ ├── block │ │ │ │ │ ├── block.cxx │ │ │ │ │ ├── block.hxx │ │ │ │ │ ├── blockCreate.cxx │ │ │ │ │ ├── blockI.hxx │ │ │ │ │ └── blockList.hxx │ │ │ │ └── namedBlock │ │ │ │ │ ├── namedBlock.cxx │ │ │ │ │ └── namedBlock.hxx │ │ │ └── gradingDescriptor │ │ │ │ ├── gradingDescriptor.cxx │ │ │ │ ├── gradingDescriptor.hxx │ │ │ │ ├── gradingDescriptors.cxx │ │ │ │ └── gradingDescriptors.hxx │ │ └── extrudeModel │ │ │ ├── cyclicSector │ │ │ ├── cyclicSector.cxx │ │ │ └── cyclicSector.hxx │ │ │ ├── extrudeModel │ │ │ ├── extrudeModel.cxx │ │ │ ├── extrudeModel.hxx │ │ │ └── extrudeModelNew.cxx │ │ │ ├── linearDirection │ │ │ ├── linearDirection.cxx │ │ │ └── linearDirection.hxx │ │ │ ├── linearNormal │ │ │ ├── linearNormal.cxx │ │ │ └── linearNormal.hxx │ │ │ ├── linearRadial │ │ │ ├── linearRadial.cxx │ │ │ └── linearRadial.hxx │ │ │ ├── planeExtrusion │ │ │ ├── planeExtrusion.cxx │ │ │ └── planeExtrusion.hxx │ │ │ ├── radial │ │ │ ├── radial.cxx │ │ │ └── radial.hxx │ │ │ ├── sector │ │ │ ├── sector.cxx │ │ │ └── sector.hxx │ │ │ ├── sigmaRadial │ │ │ ├── sigmaRadial.cxx │ │ │ └── sigmaRadial.hxx │ │ │ └── wedge │ │ │ ├── wedge.cxx │ │ │ └── wedge.hxx │ │ ├── meshTools │ │ ├── AMIInterpolation │ │ │ ├── AMIInterpolation │ │ │ │ ├── AMIInterpolation.cxx │ │ │ │ ├── AMIInterpolation.hxx │ │ │ │ ├── AMIInterpolationI.hxx │ │ │ │ ├── AMIInterpolationParallelOps.cxx │ │ │ │ ├── AMIInterpolationTemplates.cxx-backup │ │ │ │ ├── AMIInterpolationTemplatesI.hxx │ │ │ │ └── AMIMethod │ │ │ │ │ ├── AMIMethod │ │ │ │ │ ├── AMIMethod.cxx │ │ │ │ │ ├── AMIMethod.hxx │ │ │ │ │ ├── AMIMethodI.hxx │ │ │ │ │ └── AMIMethodNew.cxx │ │ │ │ │ ├── directAMI │ │ │ │ │ ├── directAMI.cxx │ │ │ │ │ └── directAMI.hxx │ │ │ │ │ ├── faceAreaWeightAMI │ │ │ │ │ ├── faceAreaWeightAMI.cxx │ │ │ │ │ └── faceAreaWeightAMI.hxx │ │ │ │ │ ├── mapNearestAMI │ │ │ │ │ ├── mapNearestAMI.cxx │ │ │ │ │ └── mapNearestAMI.hxx │ │ │ │ │ ├── partialFaceAreaWeightAMI │ │ │ │ │ ├── partialFaceAreaWeightAMI.cxx │ │ │ │ │ └── partialFaceAreaWeightAMI.hxx │ │ │ │ │ └── sweptFaceAreaWeightAMI │ │ │ │ │ ├── sweptFaceAreaWeightAMI.cxx │ │ │ │ │ └── sweptFaceAreaWeightAMI.hxx │ │ │ ├── GAMG │ │ │ │ ├── interfaceFields │ │ │ │ │ ├── cyclicACMIGAMGInterfaceField │ │ │ │ │ │ ├── cyclicACMIGAMGInterfaceField.cxx │ │ │ │ │ │ └── cyclicACMIGAMGInterfaceField.hxx │ │ │ │ │ ├── cyclicAMIGAMGInterfaceField │ │ │ │ │ │ ├── cyclicAMIGAMGInterfaceField.cxx │ │ │ │ │ │ └── cyclicAMIGAMGInterfaceField.hxx │ │ │ │ │ └── cyclicRepeatAMIGAMGInterfaceField │ │ │ │ │ │ ├── cyclicRepeatAMIGAMGInterfaceField.cxx │ │ │ │ │ │ └── cyclicRepeatAMIGAMGInterfaceField.hxx │ │ │ │ └── interfaces │ │ │ │ │ ├── cyclicACMIGAMGInterface │ │ │ │ │ ├── cyclicACMIGAMGInterface.cxx │ │ │ │ │ └── cyclicACMIGAMGInterface.hxx │ │ │ │ │ ├── cyclicAMIGAMGInterface │ │ │ │ │ ├── cyclicAMIGAMGInterface.cxx │ │ │ │ │ └── cyclicAMIGAMGInterface.hxx │ │ │ │ │ └── cyclicRepeatAMIGAMGInterface │ │ │ │ │ ├── cyclicRepeatAMIGAMGInterface.cxx │ │ │ │ │ └── cyclicRepeatAMIGAMGInterface.hxx │ │ │ ├── faceAreaIntersect │ │ │ │ ├── faceAreaIntersect.cxx │ │ │ │ ├── faceAreaIntersect.hxx │ │ │ │ ├── faceAreaIntersectI.hxx │ │ │ │ └── faceAreaIntersectNamedEnum.cxx │ │ │ └── patches │ │ │ │ ├── cyclicACMI │ │ │ │ ├── cyclicACMILduInterfaceField │ │ │ │ │ ├── cyclicACMILduInterface.cxx │ │ │ │ │ ├── cyclicACMILduInterface.hxx │ │ │ │ │ ├── cyclicACMILduInterfaceField.cxx │ │ │ │ │ └── cyclicACMILduInterfaceField.hxx │ │ │ │ ├── cyclicACMIPointPatch │ │ │ │ │ ├── cyclicACMIPointPatch.cxx │ │ │ │ │ └── cyclicACMIPointPatch.hxx │ │ │ │ ├── cyclicACMIPointPatchField │ │ │ │ │ ├── cyclicACMIPointPatchField.hxx │ │ │ │ │ ├── cyclicACMIPointPatchFields.cxx │ │ │ │ │ └── cyclicACMIPointPatchFields.hxx │ │ │ │ └── cyclicACMIPolyPatch │ │ │ │ │ ├── cyclicACMIPolyPatch.cxx │ │ │ │ │ ├── cyclicACMIPolyPatch.hxx │ │ │ │ │ └── cyclicACMIPolyPatchI.hxx │ │ │ │ ├── cyclicAMI │ │ │ │ ├── cyclicAMILduInterfaceField │ │ │ │ │ ├── cyclicAMILduInterface.cxx │ │ │ │ │ ├── cyclicAMILduInterface.hxx │ │ │ │ │ ├── cyclicAMILduInterfaceField.cxx │ │ │ │ │ └── cyclicAMILduInterfaceField.hxx │ │ │ │ ├── cyclicAMIPointPatch │ │ │ │ │ ├── cyclicAMIPointPatch.cxx │ │ │ │ │ └── cyclicAMIPointPatch.hxx │ │ │ │ ├── cyclicAMIPointPatchField │ │ │ │ │ ├── cyclicAMIPointPatchField.cxx-backup │ │ │ │ │ ├── cyclicAMIPointPatchField.hxx │ │ │ │ │ ├── cyclicAMIPointPatchFieldI.hxx │ │ │ │ │ ├── cyclicAMIPointPatchFields.cxx │ │ │ │ │ └── cyclicAMIPointPatchFields.hxx │ │ │ │ └── cyclicAMIPolyPatch │ │ │ │ │ ├── cyclicAMIPolyPatch.cxx │ │ │ │ │ ├── cyclicAMIPolyPatch.hxx │ │ │ │ │ ├── cyclicAMIPolyPatchI.hxx │ │ │ │ │ ├── cyclicAMIPolyPatchTemplates.cxx-backup │ │ │ │ │ └── cyclicAMIPolyPatchTemplatesI.hxx │ │ │ │ └── cyclicRepeatAMI │ │ │ │ ├── cyclicRepeatAMILduInterfaceField │ │ │ │ ├── cyclicRepeatAMILduInterface.cxx │ │ │ │ ├── cyclicRepeatAMILduInterface.hxx │ │ │ │ ├── cyclicRepeatAMILduInterfaceField.cxx │ │ │ │ └── cyclicRepeatAMILduInterfaceField.hxx │ │ │ │ ├── cyclicRepeatAMIPointPatch │ │ │ │ ├── cyclicRepeatAMIPointPatch.cxx │ │ │ │ └── cyclicRepeatAMIPointPatch.hxx │ │ │ │ ├── cyclicRepeatAMIPointPatchField │ │ │ │ ├── cyclicRepeatAMIPointPatchField.hxx │ │ │ │ ├── cyclicRepeatAMIPointPatchFields.cxx │ │ │ │ └── cyclicRepeatAMIPointPatchFields.hxx │ │ │ │ └── cyclicRepeatAMIPolyPatch │ │ │ │ ├── cyclicRepeatAMIPolyPatch.cxx │ │ │ │ ├── cyclicRepeatAMIPolyPatch.hxx │ │ │ │ └── cyclicRepeatAMIPolyPatchI.hxx │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── algorithms │ │ │ ├── MeshWave │ │ │ │ ├── FaceCellWave.cxx-backup │ │ │ │ ├── FaceCellWave.hxx │ │ │ │ ├── FaceCellWaveI.hxx │ │ │ │ ├── FaceCellWaveName.cxx │ │ │ │ ├── MeshWave.cxx-backup │ │ │ │ ├── MeshWave.hxx │ │ │ │ ├── MeshWaveI.hxx │ │ │ │ └── MeshWaveName.cxx │ │ │ ├── PatchEdgeFaceWave │ │ │ │ ├── PatchEdgeFaceWave.cxx-backup │ │ │ │ ├── PatchEdgeFaceWave.hxx │ │ │ │ ├── PatchEdgeFaceWaveI.hxx │ │ │ │ ├── PatchEdgeFaceWaveName.cxx │ │ │ │ ├── patchEdgeFaceInfo.cxx │ │ │ │ ├── patchEdgeFaceInfo.hxx │ │ │ │ ├── patchEdgeFaceInfoI.hxx │ │ │ │ ├── patchEdgeFaceRegion.cxx │ │ │ │ ├── patchEdgeFaceRegion.hxx │ │ │ │ ├── patchEdgeFaceRegionI.hxx │ │ │ │ ├── patchEdgeFaceRegions.cxx │ │ │ │ ├── patchEdgeFaceRegions.hxx │ │ │ │ ├── patchEdgeFaceRegionsI.hxx │ │ │ │ ├── patchPatchDist.cxx │ │ │ │ └── patchPatchDist.hxx │ │ │ └── PointEdgeWave │ │ │ │ ├── PointEdgeWave.cxx-backup │ │ │ │ ├── PointEdgeWave.hxx │ │ │ │ ├── PointEdgeWaveI.hxx │ │ │ │ ├── PointEdgeWaveName.cxx │ │ │ │ ├── pointEdgePoint.cxx │ │ │ │ ├── pointEdgePoint.hxx │ │ │ │ └── pointEdgePointI.hxx │ │ ├── cellClassification │ │ │ ├── cellClassification.cxx │ │ │ ├── cellClassification.hxx │ │ │ ├── cellInfo.cxx │ │ │ ├── cellInfo.hxx │ │ │ └── cellInfoI.hxx │ │ ├── cellDist │ │ │ ├── cellDistFuncs.cxx │ │ │ ├── cellDistFuncs.hxx │ │ │ ├── cellDistFuncsTemplates.cxx-backup │ │ │ ├── cellDistFuncsTemplatesI.hxx │ │ │ ├── patchWave │ │ │ │ ├── patchDataWave.cxx-backup │ │ │ │ ├── patchDataWave.hxx │ │ │ │ ├── patchDataWaveI.hxx │ │ │ │ ├── patchWave.cxx │ │ │ │ └── patchWave.hxx │ │ │ └── wallPoint │ │ │ │ ├── wallPoint.cxx │ │ │ │ ├── wallPoint.hxx │ │ │ │ ├── wallPointData.cxx-backup │ │ │ │ ├── wallPointData.hxx │ │ │ │ ├── wallPointDataI.hxx │ │ │ │ ├── wallPointData_Imp.hxx │ │ │ │ └── wallPointI.hxx │ │ ├── cellFeatures │ │ │ ├── cellFeatures.cxx │ │ │ └── cellFeatures.hxx │ │ ├── cellQuality │ │ │ ├── cellQuality.cxx │ │ │ └── cellQuality.hxx │ │ ├── coordinateSystems │ │ │ ├── cartesianCS.cxx │ │ │ ├── cartesianCS.hxx │ │ │ ├── coordinateRotation │ │ │ │ ├── EulerCoordinateRotation.cxx │ │ │ │ ├── EulerCoordinateRotation.hxx │ │ │ │ ├── STARCDCoordinateRotation.cxx │ │ │ │ ├── STARCDCoordinateRotation.hxx │ │ │ │ ├── axesRotation.cxx │ │ │ │ ├── axesRotation.hxx │ │ │ │ ├── coordinateRotation.cxx │ │ │ │ ├── coordinateRotation.hxx │ │ │ │ ├── coordinateRotationNew.cxx │ │ │ │ ├── cylindrical.cxx │ │ │ │ └── cylindrical.hxx │ │ │ ├── coordinateSystem.cxx │ │ │ ├── coordinateSystem.hxx │ │ │ ├── coordinateSystemNew.cxx │ │ │ ├── coordinateSystems.cxx │ │ │ ├── coordinateSystems.hxx │ │ │ ├── coordinateSystemsIOPtrListTypeNameAndDebug.cxx │ │ │ ├── cylindricalCS.cxx │ │ │ └── cylindricalCS.hxx │ │ ├── edgeFaceCirculator │ │ │ ├── edgeFaceCirculator.cxx │ │ │ ├── edgeFaceCirculator.hxx │ │ │ └── edgeFaceCirculatorI.hxx │ │ ├── edgeMesh │ │ │ ├── edgeMesh.cxx │ │ │ ├── edgeMesh.hxx │ │ │ ├── edgeMeshFormats │ │ │ │ ├── _obj │ │ │ │ │ ├── OBJedgeFormat.cxx │ │ │ │ │ ├── OBJedgeFormat.hxx │ │ │ │ │ └── OBJedgeFormatRunTime.cxx │ │ │ │ ├── edgeMesh │ │ │ │ │ ├── edgeMeshFormat.cxx │ │ │ │ │ ├── edgeMeshFormat.hxx │ │ │ │ │ └── edgeMeshFormatRunTime.cxx │ │ │ │ ├── edgeMeshFormatsCore.cxx │ │ │ │ ├── edgeMeshFormatsCore.hxx │ │ │ │ ├── extendedFeatureEdgeMesh │ │ │ │ │ ├── extendedFeatureEdgeMeshFormat.cxx │ │ │ │ │ ├── extendedFeatureEdgeMeshFormat.hxx │ │ │ │ │ └── extendedFeatureEdgeMeshFormatRunTime.cxx │ │ │ │ ├── nas │ │ │ │ │ ├── NASedgeFormat.cxx │ │ │ │ │ ├── NASedgeFormat.hxx │ │ │ │ │ └── NASedgeFormatRunTime.cxx │ │ │ │ ├── starcd │ │ │ │ │ ├── STARCDedgeFormat.cxx │ │ │ │ │ ├── STARCDedgeFormat.hxx │ │ │ │ │ └── STARCDedgeFormatRunTime.cxx │ │ │ │ └── vtk │ │ │ │ │ ├── VTKedgeFormat.cxx │ │ │ │ │ ├── VTKedgeFormat.hxx │ │ │ │ │ └── VTKedgeFormatRunTime.cxx │ │ │ ├── edgeMeshI.hxx │ │ │ ├── edgeMeshIO.cxx │ │ │ ├── edgeMeshNew.cxx │ │ │ ├── extendedEdgeMesh │ │ │ │ ├── extendedEdgeMesh.cxx │ │ │ │ ├── extendedEdgeMesh.hxx │ │ │ │ ├── extendedEdgeMeshFormats │ │ │ │ │ └── extendedEdgeMeshFormat │ │ │ │ │ │ ├── extendedEdgeMeshFormat.cxx │ │ │ │ │ │ ├── extendedEdgeMeshFormat.hxx │ │ │ │ │ │ └── extendedEdgeMeshFormatRunTime.cxx │ │ │ │ ├── extendedEdgeMeshI.hxx │ │ │ │ ├── extendedEdgeMeshNamedEnum.cxx │ │ │ │ ├── extendedEdgeMeshNew.cxx │ │ │ │ ├── extendedEdgeMeshTemplates.cxx-backup │ │ │ │ ├── extendedEdgeMeshTemplatesI.hxx │ │ │ │ └── extendedFeatureEdgeMesh │ │ │ │ │ ├── extendedFeatureEdgeMesh.cxx │ │ │ │ │ └── extendedFeatureEdgeMesh.hxx │ │ │ └── featureEdgeMesh │ │ │ │ ├── featureEdgeMesh.cxx │ │ │ │ └── featureEdgeMesh.hxx │ │ ├── indexedOctree │ │ │ ├── treeDataEdge.cxx │ │ │ ├── treeDataEdge.hxx │ │ │ ├── treeDataFace.cxx │ │ │ ├── treeDataFace.hxx │ │ │ ├── treeDataPoint.cxx │ │ │ ├── treeDataPoint.hxx │ │ │ ├── treeDataPrimitivePatch.cxx-backup │ │ │ ├── treeDataPrimitivePatch.hxx │ │ │ ├── treeDataPrimitivePatchI.hxx │ │ │ ├── treeDataPrimitivePatchName.cxx │ │ │ ├── treeDataTriSurface.cxx │ │ │ └── treeDataTriSurface.hxx │ │ ├── mappedPatches │ │ │ ├── mappedPointPatch │ │ │ │ ├── mappedPointPatch.cxx │ │ │ │ ├── mappedPointPatch.hxx │ │ │ │ ├── mappedWallPointPatch.cxx │ │ │ │ └── mappedWallPointPatch.hxx │ │ │ └── mappedPolyPatch │ │ │ │ ├── mappedPatchBase.cxx │ │ │ │ ├── mappedPatchBase.hxx │ │ │ │ ├── mappedPatchBaseI.hxx │ │ │ │ ├── mappedPatchBaseNamedEnum.cxx │ │ │ │ ├── mappedPatchBaseTemplates.cxx-backup │ │ │ │ ├── mappedPatchBaseTemplatesI.hxx │ │ │ │ ├── mappedPolyPatch.cxx │ │ │ │ ├── mappedPolyPatch.hxx │ │ │ │ ├── mappedVariableThicknessWallPolyPatch.cxx │ │ │ │ ├── mappedVariableThicknessWallPolyPatch.hxx │ │ │ │ ├── mappedWallPolyPatch.cxx │ │ │ │ └── mappedWallPolyPatch.hxx │ │ ├── meshSearch │ │ │ ├── meshSearch.cxx │ │ │ ├── meshSearch.hxx │ │ │ ├── meshSearchFACE_CENTRE_TRISMeshObject.cxx │ │ │ ├── meshSearchFACE_CENTRE_TRISMeshObject.hxx │ │ │ ├── meshSearchMeshObject.cxx │ │ │ └── meshSearchMeshObject.hxx │ │ ├── meshStructure │ │ │ ├── meshStructure.cxx │ │ │ ├── meshStructure.hxx │ │ │ ├── meshStructureI.hxx │ │ │ ├── pointTopoDistanceData.cxx │ │ │ ├── pointTopoDistanceData.hxx │ │ │ ├── pointTopoDistanceDataI.hxx │ │ │ ├── topoDistanceData.cxx │ │ │ ├── topoDistanceData.hxx │ │ │ └── topoDistanceDataI.hxx │ │ ├── meshTools │ │ │ ├── meshTools.cxx │ │ │ ├── meshTools.hxx │ │ │ ├── meshToolsI.hxx │ │ │ └── meshToolsTemplates.cxx-backup │ │ ├── momentOfInertia │ │ │ ├── momentOfInertia.cxx │ │ │ ├── momentOfInertia.hxx │ │ │ ├── volInt.ps.gz │ │ │ └── volumeIntegration │ │ │ │ ├── README │ │ │ │ ├── cube │ │ │ │ ├── icosa │ │ │ │ └── tetra │ │ ├── polyMeshZipUpCells │ │ │ ├── polyMeshZipUpCells.cxx │ │ │ └── polyMeshZipUpCells.hxx │ │ ├── primitiveMeshGeometry │ │ │ ├── primitiveMeshGeometry.cxx │ │ │ └── primitiveMeshGeometry.hxx │ │ ├── regionCoupled │ │ │ ├── GAMG │ │ │ │ ├── interfaceFields │ │ │ │ │ └── regionCoupledGAMGInterfaceField │ │ │ │ │ │ ├── regionCoupledGAMGInterfaceField.cxx │ │ │ │ │ │ ├── regionCoupledGAMGInterfaceField.hxx │ │ │ │ │ │ ├── regionCoupledWallGAMGInterfaceField.cxx │ │ │ │ │ │ └── regionCoupledWallGAMGInterfaceField.hxx │ │ │ │ └── interfaces │ │ │ │ │ └── regionCoupledGAMGInterface │ │ │ │ │ ├── regionCoupledBaseGAMGInterface.cxx │ │ │ │ │ ├── regionCoupledBaseGAMGInterface.hxx │ │ │ │ │ ├── regionCoupledGAMGInterface.cxx │ │ │ │ │ ├── regionCoupledGAMGInterface.hxx │ │ │ │ │ ├── regionCoupledWallGAMGInterface.cxx │ │ │ │ │ └── regionCoupledWallGAMGInterface.hxx │ │ │ └── patches │ │ │ │ ├── regionCoupledLduInterface │ │ │ │ ├── regionCoupledLduInterface.cxx │ │ │ │ └── regionCoupledLduInterface.hxx │ │ │ │ ├── regionCoupledPointPatch │ │ │ │ ├── regionCoupledPointPatch.cxx │ │ │ │ ├── regionCoupledPointPatch.hxx │ │ │ │ ├── regionCoupledWallPointPatch.cxx │ │ │ │ └── regionCoupledWallPointPatch.hxx │ │ │ │ └── regionCoupledPolyPatch │ │ │ │ ├── regionCoupledBase.cxx │ │ │ │ ├── regionCoupledBase.hxx │ │ │ │ ├── regionCoupledBaseI.hxx │ │ │ │ ├── regionCoupledBaseTemplates.cxx-backup │ │ │ │ ├── regionCoupledPolyPatch.cxx │ │ │ │ ├── regionCoupledPolyPatch.hxx │ │ │ │ ├── regionCoupledWallPolyPatch.cxx │ │ │ │ └── regionCoupledWallPolyPatch.hxx │ │ ├── regionSplit │ │ │ ├── localPointRegion.cxx │ │ │ ├── localPointRegion.hxx │ │ │ ├── minData.hxx │ │ │ ├── minDataI.hxx │ │ │ ├── regionSplit.cxx │ │ │ └── regionSplit.hxx │ │ ├── searchableSurfaces │ │ │ ├── closedTriSurfaceMesh │ │ │ │ ├── closedTriSurfaceMesh.cxx │ │ │ │ └── closedTriSurfaceMesh.hxx │ │ │ ├── searchableBox │ │ │ │ ├── searchableBox.cxx │ │ │ │ └── searchableBox.hxx │ │ │ ├── searchableCylinder │ │ │ │ ├── searchableCylinder.cxx │ │ │ │ └── searchableCylinder.hxx │ │ │ ├── searchableDisk │ │ │ │ ├── searchableDisk.cxx │ │ │ │ └── searchableDisk.hxx │ │ │ ├── searchableExtrudedCircle │ │ │ │ ├── searchableExtrudedCircle.cxx │ │ │ │ └── searchableExtrudedCircle.hxx │ │ │ ├── searchablePlane │ │ │ │ ├── searchablePlane.cxx │ │ │ │ └── searchablePlane.hxx │ │ │ ├── searchablePlate │ │ │ │ ├── searchablePlate.cxx │ │ │ │ └── searchablePlate.hxx │ │ │ ├── searchableSphere │ │ │ │ ├── searchableSphere.cxx │ │ │ │ └── searchableSphere.hxx │ │ │ ├── searchableSurface │ │ │ │ ├── searchableSurface.cxx │ │ │ │ └── searchableSurface.hxx │ │ │ ├── searchableSurfaceCollection │ │ │ │ ├── searchableSurfaceCollection.cxx │ │ │ │ └── searchableSurfaceCollection.hxx │ │ │ ├── searchableSurfaceWithGaps │ │ │ │ ├── searchableSurfaceWithGaps.cxx │ │ │ │ └── searchableSurfaceWithGaps.hxx │ │ │ ├── searchableSurfaces │ │ │ │ ├── searchableSurfaces.cxx │ │ │ │ └── searchableSurfaces.hxx │ │ │ ├── searchableSurfacesQueries │ │ │ │ ├── searchableSurfacesQueries.cxx │ │ │ │ └── searchableSurfacesQueries.hxx │ │ │ └── triSurfaceMesh │ │ │ │ ├── extractCloseness.cxx │ │ │ │ ├── triSurfaceMesh.cxx │ │ │ │ └── triSurfaceMesh.hxx │ │ ├── sets │ │ │ ├── cellSources │ │ │ │ ├── boxToCell │ │ │ │ │ ├── boxToCell.cxx │ │ │ │ │ └── boxToCell.hxx │ │ │ │ ├── cellToCell │ │ │ │ │ ├── cellToCell.cxx │ │ │ │ │ └── cellToCell.hxx │ │ │ │ ├── cylinderAnnulusToCell │ │ │ │ │ ├── cylinderAnnulusToCell.cxx │ │ │ │ │ └── cylinderAnnulusToCell.hxx │ │ │ │ ├── cylinderToCell │ │ │ │ │ ├── cylinderToCell.cxx │ │ │ │ │ └── cylinderToCell.hxx │ │ │ │ ├── faceToCell │ │ │ │ │ ├── faceToCell.cxx │ │ │ │ │ ├── faceToCell.hxx │ │ │ │ │ └── faceToCellNamedEnum.cxx │ │ │ │ ├── faceZoneToCell │ │ │ │ │ ├── faceZoneToCell.cxx │ │ │ │ │ ├── faceZoneToCell.hxx │ │ │ │ │ └── faceZoneToCellNamedEnum.cxx │ │ │ │ ├── fieldToCell │ │ │ │ │ ├── fieldDictionary.hxx │ │ │ │ │ ├── fieldToCell.cxx │ │ │ │ │ └── fieldToCell.hxx │ │ │ │ ├── labelToCell │ │ │ │ │ ├── labelToCell.cxx │ │ │ │ │ └── labelToCell.hxx │ │ │ │ ├── nbrToCell │ │ │ │ │ ├── nbrToCell.cxx │ │ │ │ │ └── nbrToCell.hxx │ │ │ │ ├── nearestToCell │ │ │ │ │ ├── nearestToCell.cxx │ │ │ │ │ └── nearestToCell.hxx │ │ │ │ ├── pointToCell │ │ │ │ │ ├── pointToCell.cxx │ │ │ │ │ ├── pointToCell.hxx │ │ │ │ │ └── pointToCellNamedEnum.cxx │ │ │ │ ├── regionToCell │ │ │ │ │ ├── regionToCell.cxx │ │ │ │ │ └── regionToCell.hxx │ │ │ │ ├── rotatedBoxToCell │ │ │ │ │ ├── rotatedBoxToCell.cxx │ │ │ │ │ └── rotatedBoxToCell.hxx │ │ │ │ ├── shapeToCell │ │ │ │ │ ├── shapeToCell.cxx │ │ │ │ │ └── shapeToCell.hxx │ │ │ │ ├── sphereToCell │ │ │ │ │ ├── sphereToCell.cxx │ │ │ │ │ └── sphereToCell.hxx │ │ │ │ ├── surfaceToCell │ │ │ │ │ ├── surfaceToCell.cxx │ │ │ │ │ └── surfaceToCell.hxx │ │ │ │ ├── targetVolumeToCell │ │ │ │ │ ├── targetVolumeToCell.cxx │ │ │ │ │ └── targetVolumeToCell.hxx │ │ │ │ └── zoneToCell │ │ │ │ │ ├── zoneToCell.cxx │ │ │ │ │ └── zoneToCell.hxx │ │ │ ├── cellZoneSources │ │ │ │ └── setToCellZone │ │ │ │ │ ├── setToCellZone.cxx │ │ │ │ │ └── setToCellZone.hxx │ │ │ ├── faceSources │ │ │ │ ├── boundaryToFace │ │ │ │ │ ├── boundaryToFace.cxx │ │ │ │ │ └── boundaryToFace.hxx │ │ │ │ ├── boxToFace │ │ │ │ │ ├── boxToFace.cxx │ │ │ │ │ └── boxToFace.hxx │ │ │ │ ├── cellToFace │ │ │ │ │ ├── cellToFace.cxx │ │ │ │ │ ├── cellToFace.hxx │ │ │ │ │ └── cellToFaceNamedEnum.cxx │ │ │ │ ├── cylinderAnnulusToFace │ │ │ │ │ ├── cylinderAnnulusToFace.cxx │ │ │ │ │ └── cylinderAnnulusToFace.hxx │ │ │ │ ├── cylinderToFace │ │ │ │ │ ├── cylinderToFace.cxx │ │ │ │ │ └── cylinderToFace.hxx │ │ │ │ ├── faceToFace │ │ │ │ │ ├── faceToFace.cxx │ │ │ │ │ └── faceToFace.hxx │ │ │ │ ├── labelToFace │ │ │ │ │ ├── labelToFace.cxx │ │ │ │ │ └── labelToFace.hxx │ │ │ │ ├── normalToFace │ │ │ │ │ ├── normalToFace.cxx │ │ │ │ │ └── normalToFace.hxx │ │ │ │ ├── patchToFace │ │ │ │ │ ├── patchToFace.cxx │ │ │ │ │ └── patchToFace.hxx │ │ │ │ ├── pointToFace │ │ │ │ │ ├── pointToFace.cxx │ │ │ │ │ ├── pointToFace.hxx │ │ │ │ │ └── pointToFaceNamedEnum.cxx │ │ │ │ ├── regionToFace │ │ │ │ │ ├── regionToFace.cxx │ │ │ │ │ └── regionToFace.hxx │ │ │ │ └── zoneToFace │ │ │ │ │ ├── zoneToFace.cxx │ │ │ │ │ └── zoneToFace.hxx │ │ │ ├── faceZoneSources │ │ │ │ ├── faceZoneToFaceZone │ │ │ │ │ ├── faceZoneToFaceZone.cxx │ │ │ │ │ └── faceZoneToFaceZone.hxx │ │ │ │ ├── searchableSurfaceToFaceZone │ │ │ │ │ ├── searchableSurfaceToFaceZone.cxx │ │ │ │ │ └── searchableSurfaceToFaceZone.hxx │ │ │ │ ├── setAndNormalToFaceZone │ │ │ │ │ ├── setAndNormalToFaceZone.cxx │ │ │ │ │ └── setAndNormalToFaceZone.hxx │ │ │ │ ├── setToFaceZone │ │ │ │ │ ├── setToFaceZone.cxx │ │ │ │ │ └── setToFaceZone.hxx │ │ │ │ └── setsToFaceZone │ │ │ │ │ ├── setsToFaceZone.cxx │ │ │ │ │ └── setsToFaceZone.hxx │ │ │ ├── pointSources │ │ │ │ ├── boxToPoint │ │ │ │ │ ├── boxToPoint.cxx │ │ │ │ │ └── boxToPoint.hxx │ │ │ │ ├── cellToPoint │ │ │ │ │ ├── cellToPoint.cxx │ │ │ │ │ ├── cellToPoint.hxx │ │ │ │ │ └── cellToPointNamedEnum.cxx │ │ │ │ ├── faceToPoint │ │ │ │ │ ├── faceToPoint.cxx │ │ │ │ │ ├── faceToPoint.hxx │ │ │ │ │ └── faceToPointNamedEnum.cxx │ │ │ │ ├── labelToPoint │ │ │ │ │ ├── labelToPoint.cxx │ │ │ │ │ └── labelToPoint.hxx │ │ │ │ ├── nearestToPoint │ │ │ │ │ ├── nearestToPoint.cxx │ │ │ │ │ └── nearestToPoint.hxx │ │ │ │ ├── pointToPoint │ │ │ │ │ ├── pointToPoint.cxx │ │ │ │ │ └── pointToPoint.hxx │ │ │ │ ├── surfaceToPoint │ │ │ │ │ ├── surfaceToPoint.cxx │ │ │ │ │ └── surfaceToPoint.hxx │ │ │ │ └── zoneToPoint │ │ │ │ │ ├── zoneToPoint.cxx │ │ │ │ │ └── zoneToPoint.hxx │ │ │ ├── pointZoneSources │ │ │ │ └── setToPointZone │ │ │ │ │ ├── setToPointZone.cxx │ │ │ │ │ └── setToPointZone.hxx │ │ │ ├── topoSetSource │ │ │ │ ├── topoSetSource.cxx │ │ │ │ ├── topoSetSource.hxx │ │ │ │ └── topoSetSourceNamedEnum.cxx │ │ │ └── topoSets │ │ │ │ ├── cellSet.cxx │ │ │ │ ├── cellSet.hxx │ │ │ │ ├── cellZoneSet.cxx │ │ │ │ ├── cellZoneSet.hxx │ │ │ │ ├── faceSet.cxx │ │ │ │ ├── faceSet.hxx │ │ │ │ ├── faceZoneSet.cxx │ │ │ │ ├── faceZoneSet.hxx │ │ │ │ ├── pointSet.cxx │ │ │ │ ├── pointSet.hxx │ │ │ │ ├── pointZoneSet.cxx │ │ │ │ ├── pointZoneSet.hxx │ │ │ │ ├── topoSet.cxx │ │ │ │ └── topoSet.hxx │ │ ├── surfaceSets │ │ │ ├── surfaceSets.cxx │ │ │ └── surfaceSets.hxx │ │ ├── tetOverlapVolume │ │ │ ├── tetOverlapVolume.cxx │ │ │ └── tetOverlapVolume.hxx │ │ ├── triSurface │ │ │ ├── booleanOps │ │ │ │ ├── booleanSurface │ │ │ │ │ ├── booleanSurface.cxx │ │ │ │ │ └── booleanSurface.hxx │ │ │ │ ├── intersectedSurface │ │ │ │ │ ├── edgeSurface.cxx │ │ │ │ │ ├── edgeSurface.hxx │ │ │ │ │ ├── intersectedSurface.cxx │ │ │ │ │ └── intersectedSurface.hxx │ │ │ │ └── surfaceIntersection │ │ │ │ │ ├── edgeIntersections.cxx │ │ │ │ │ ├── edgeIntersections.hxx │ │ │ │ │ ├── surfaceIntersection.cxx │ │ │ │ │ ├── surfaceIntersection.hxx │ │ │ │ │ ├── surfaceIntersectionFuncs.cxx │ │ │ │ │ ├── surfaceIntersectionI.hxx │ │ │ │ │ └── surfaceIntersectionTemplates.cxx-backup │ │ │ ├── orientedSurface │ │ │ │ ├── orientedSurface.cxx │ │ │ │ └── orientedSurface.hxx │ │ │ ├── surfaceFeatures │ │ │ │ ├── surfaceFeatures.cxx │ │ │ │ └── surfaceFeatures.hxx │ │ │ ├── surfaceLocation │ │ │ │ ├── surfaceLocation.cxx │ │ │ │ └── surfaceLocation.hxx │ │ │ ├── triSurfaceSearch │ │ │ │ ├── triSurfaceRegionSearch.cxx │ │ │ │ ├── triSurfaceRegionSearch.hxx │ │ │ │ ├── triSurfaceSearch.cxx │ │ │ │ └── triSurfaceSearch.hxx │ │ │ ├── triSurfaceTools │ │ │ │ ├── geompack │ │ │ │ │ ├── geompack.cxx │ │ │ │ │ └── geompack.hxx │ │ │ │ ├── pointToPointPlanarInterpolation.cxx │ │ │ │ ├── pointToPointPlanarInterpolation.hxx │ │ │ │ ├── pointToPointPlanarInterpolationI.hxx │ │ │ │ ├── pointToPointPlanarInterpolationTemplates.cxx-backup │ │ │ │ ├── triSurfaceTools.cxx │ │ │ │ └── triSurfaceTools.hxx │ │ │ └── triangleFuncs │ │ │ │ ├── triangleFuncs.cxx │ │ │ │ └── triangleFuncs.hxx │ │ └── twoDPointCorrector │ │ │ ├── twoDPointCorrector.cxx │ │ │ └── twoDPointCorrector.hxx │ │ ├── module │ │ └── FvMesh_Module.hxx │ │ ├── surfMesh │ │ ├── MeshedSurface │ │ │ ├── MeshedSurface.cxx-backup │ │ │ ├── MeshedSurface.hxx │ │ │ ├── MeshedSurfaceCore.cxx │ │ │ ├── MeshedSurfaceI.hxx │ │ │ ├── MeshedSurfaceIO.cxx-backup │ │ │ ├── MeshedSurfaceIOI.hxx │ │ │ ├── MeshedSurfaceNew.cxx-backup │ │ │ ├── MeshedSurfaceNewI.hxx │ │ │ ├── MeshedSurfaceZones.cxx-backup │ │ │ ├── MeshedSurfaceZonesI.hxx │ │ │ ├── MeshedSurfaces.cxx │ │ │ ├── MeshedSurfaces.hxx │ │ │ └── MeshedSurfacesFwd.hxx │ │ ├── MeshedSurfaceAllocator │ │ │ ├── MeshedSurfaceIOAllocator.cxx │ │ │ └── MeshedSurfaceIOAllocator.hxx │ │ ├── MeshedSurfaceProxy │ │ │ ├── MeshedSurfaceProxy.cxx-backup │ │ │ ├── MeshedSurfaceProxy.hxx │ │ │ ├── MeshedSurfaceProxyCore.cxx │ │ │ └── MeshedSurfaceProxyI.hxx │ │ ├── UnsortedMeshedSurface │ │ │ ├── UnsortedMeshedSurface.cxx-backup │ │ │ ├── UnsortedMeshedSurface.hxx │ │ │ ├── UnsortedMeshedSurfaceI.hxx │ │ │ ├── UnsortedMeshedSurfaceNew.cxx-backup │ │ │ ├── UnsortedMeshedSurfaceNewI.hxx │ │ │ ├── UnsortedMeshedSurfaces.cxx │ │ │ ├── UnsortedMeshedSurfaces.hxx │ │ │ └── UnsortedMeshedSurfacesFwd.hxx │ │ ├── surfFields │ │ │ ├── surfFields │ │ │ │ ├── surfFields.cxx │ │ │ │ ├── surfFields.hxx │ │ │ │ ├── surfFieldsFwd.hxx │ │ │ │ └── surfGeoMesh.hxx │ │ │ └── surfPointFields │ │ │ │ ├── surfPointFields.cxx │ │ │ │ ├── surfPointFields.hxx │ │ │ │ ├── surfPointFieldsFwd.hxx │ │ │ │ └── surfPointGeoMesh.hxx │ │ ├── surfMesh │ │ │ ├── surfMesh.cxx │ │ │ ├── surfMesh.hxx │ │ │ ├── surfMeshClear.cxx │ │ │ └── surfMeshIO.cxx │ │ ├── surfZone │ │ │ ├── surfZone │ │ │ │ ├── surfZone.cxx │ │ │ │ ├── surfZone.hxx │ │ │ │ ├── surfZoneIOList.cxx │ │ │ │ ├── surfZoneIOList.hxx │ │ │ │ └── surfZoneList.hxx │ │ │ └── surfZoneIdentifier │ │ │ │ ├── surfZoneIdentifier.cxx │ │ │ │ ├── surfZoneIdentifier.hxx │ │ │ │ └── surfZoneIdentifierList.hxx │ │ ├── surfaceFormats │ │ │ ├── ac3d │ │ │ │ ├── AC3DsurfaceFormat.cxx-backup │ │ │ │ ├── AC3DsurfaceFormat.hxx │ │ │ │ ├── AC3DsurfaceFormatCore.cxx │ │ │ │ ├── AC3DsurfaceFormatCore.hxx │ │ │ │ ├── AC3DsurfaceFormatCoreI.hxx │ │ │ │ ├── AC3DsurfaceFormatCoreTemplates.cxx-backup │ │ │ │ ├── AC3DsurfaceFormatI.hxx │ │ │ │ └── AC3DsurfaceFormatRunTime.cxx │ │ │ ├── gts │ │ │ │ ├── GTSsurfaceFormat.cxx-backup │ │ │ │ ├── GTSsurfaceFormat.hxx │ │ │ │ ├── GTSsurfaceFormatI.hxx │ │ │ │ └── GTSsurfaceFormatRunTime.cxx │ │ │ ├── nas │ │ │ │ ├── NASsurfaceFormat.cxx-backup │ │ │ │ ├── NASsurfaceFormat.hxx │ │ │ │ ├── NASsurfaceFormatI.hxx │ │ │ │ └── NASsurfaceFormatRunTime.cxx │ │ │ ├── objFormat │ │ │ │ ├── OBJstream.cxx │ │ │ │ ├── OBJstream.hxx │ │ │ │ ├── OBJsurfaceFormat.cxx-backup │ │ │ │ ├── OBJsurfaceFormat.hxx │ │ │ │ ├── OBJsurfaceFormatI.hxx │ │ │ │ └── OBJsurfaceFormatRunTime.cxx │ │ │ ├── off │ │ │ │ ├── OFFsurfaceFormat.cxx-backup │ │ │ │ ├── OFFsurfaceFormat.hxx │ │ │ │ ├── OFFsurfaceFormatI.hxx │ │ │ │ └── OFFsurfaceFormatRunTime.cxx │ │ │ ├── ofs │ │ │ │ ├── OFSsurfaceFormat.cxx-backup │ │ │ │ ├── OFSsurfaceFormat.hxx │ │ │ │ ├── OFSsurfaceFormatCore.cxx │ │ │ │ ├── OFSsurfaceFormatCore.hxx │ │ │ │ ├── OFSsurfaceFormatI.hxx │ │ │ │ └── OFSsurfaceFormatRunTime.cxx │ │ │ ├── smesh │ │ │ │ ├── SMESHsurfaceFormat.cxx-backup │ │ │ │ ├── SMESHsurfaceFormat.hxx │ │ │ │ ├── SMESHsurfaceFormatI.hxx │ │ │ │ └── SMESHsurfaceFormatRunTime.cxx │ │ │ ├── starcd │ │ │ │ ├── STARCDsurfaceFormat.cxx-backup │ │ │ │ ├── STARCDsurfaceFormat.hxx │ │ │ │ ├── STARCDsurfaceFormatCore.cxx │ │ │ │ ├── STARCDsurfaceFormatCore.hxx │ │ │ │ ├── STARCDsurfaceFormatI.hxx │ │ │ │ └── STARCDsurfaceFormatRunTime.cxx │ │ │ ├── stl │ │ │ │ ├── STLpoint.hxx │ │ │ │ ├── STLsurfaceFormat.cxx-backup │ │ │ │ ├── STLsurfaceFormat.hxx │ │ │ │ ├── STLsurfaceFormatASCII.L │ │ │ │ ├── STLsurfaceFormatASCII.cxx │ │ │ │ ├── STLsurfaceFormatCore.cxx │ │ │ │ ├── STLsurfaceFormatCore.hxx │ │ │ │ ├── STLsurfaceFormatI.hxx │ │ │ │ ├── STLsurfaceFormatRunTime.cxx │ │ │ │ ├── STLtriangle.cxx │ │ │ │ ├── STLtriangle.hxx │ │ │ │ └── STLtriangleI.hxx │ │ │ ├── surfaceFormatsCore.cxx │ │ │ ├── surfaceFormatsCore.hxx │ │ │ ├── tri │ │ │ │ ├── TRIsurfaceFormat.cxx-backup │ │ │ │ ├── TRIsurfaceFormat.hxx │ │ │ │ ├── TRIsurfaceFormatCore.cxx │ │ │ │ ├── TRIsurfaceFormatCore.hxx │ │ │ │ ├── TRIsurfaceFormatI.hxx │ │ │ │ └── TRIsurfaceFormatRunTime.cxx │ │ │ ├── vtk │ │ │ │ ├── VTKsurfaceFormat.cxx-backup │ │ │ │ ├── VTKsurfaceFormat.hxx │ │ │ │ ├── VTKsurfaceFormatCore.cxx │ │ │ │ ├── VTKsurfaceFormatCore.hxx │ │ │ │ ├── VTKsurfaceFormatI.hxx │ │ │ │ └── VTKsurfaceFormatRunTime.cxx │ │ │ ├── wrl │ │ │ │ ├── WRLsurfaceFormat.cxx-backup │ │ │ │ ├── WRLsurfaceFormat.hxx │ │ │ │ ├── WRLsurfaceFormatCore.cxx │ │ │ │ ├── WRLsurfaceFormatCore.hxx │ │ │ │ ├── WRLsurfaceFormatI.hxx │ │ │ │ └── WRLsurfaceFormatRunTime.cxx │ │ │ └── x3d │ │ │ │ ├── X3DsurfaceFormat.cxx-backup │ │ │ │ ├── X3DsurfaceFormat.hxx │ │ │ │ ├── X3DsurfaceFormatCore.cxx │ │ │ │ ├── X3DsurfaceFormatCore.hxx │ │ │ │ ├── X3DsurfaceFormatI.hxx │ │ │ │ └── X3DsurfaceFormatRunTime.cxx │ │ └── surfaceRegistry │ │ │ ├── surfaceRegistry.cxx │ │ │ └── surfaceRegistry.hxx │ │ └── triSurface │ │ ├── faceTriangulation │ │ ├── faceTriangulation.cxx │ │ └── faceTriangulation.hxx │ │ ├── meshTriangulation │ │ ├── meshTriangulation.cxx │ │ └── meshTriangulation.hxx │ │ ├── tools │ │ ├── hashSignedLabel │ │ │ └── hashSignedLabel.hxx │ │ ├── labelPair │ │ │ └── labelPairLookup.hxx │ │ └── labelledTri │ │ │ ├── labelledTri.cxx │ │ │ ├── labelledTri.hxx │ │ │ ├── labelledTriI.hxx │ │ │ ├── sortLabelledTri.cxx │ │ │ └── sortLabelledTri.hxx │ │ ├── triSurface │ │ ├── geometricSurfacePatch │ │ │ ├── geometricSurfacePatch.cxx │ │ │ ├── geometricSurfacePatch.hxx │ │ │ └── geometricSurfacePatchList.hxx │ │ ├── interfaces │ │ │ ├── AC3D │ │ │ │ ├── readAC.cxx │ │ │ │ └── writeAC.cxx │ │ │ ├── GTS │ │ │ │ ├── readGTS.cxx │ │ │ │ └── writeGTS.cxx │ │ │ ├── NAS │ │ │ │ └── readNAS.cxx │ │ │ ├── OBJ_File │ │ │ │ ├── readOBJ.cxx │ │ │ │ └── writeOBJ.cxx │ │ │ ├── OFF │ │ │ │ ├── readOFF.cxx │ │ │ │ └── writeOFF.cxx │ │ │ ├── SMESH │ │ │ │ └── writeSMESH.cxx │ │ │ ├── STL │ │ │ │ ├── readSTL.cxx │ │ │ │ ├── readSTLASCII.L │ │ │ │ ├── readSTLASCII.cxx │ │ │ │ ├── readSTLBINARY.cxx │ │ │ │ └── writeSTL.cxx │ │ │ ├── TRI │ │ │ │ ├── readTRI.cxx │ │ │ │ └── writeTRI.cxx │ │ │ └── VTK │ │ │ │ ├── readVTK.cxx │ │ │ │ └── writeVTK.cxx │ │ ├── stitchTriangles.cxx │ │ ├── surfacePatch │ │ │ ├── surfacePatch.cxx │ │ │ ├── surfacePatch.hxx │ │ │ ├── surfacePatchIOList.cxx │ │ │ ├── surfacePatchIOList.hxx │ │ │ └── surfacePatchList.hxx │ │ ├── triSurface.cxx │ │ ├── triSurface.hxx │ │ └── triSurfaceAddressing.cxx │ │ └── triSurfaceFields │ │ ├── triSurfaceFields.cxx │ │ ├── triSurfaceFields.hxx │ │ ├── triSurfaceFieldsFwd.hxx │ │ ├── triSurfaceGeoMesh.hxx │ │ └── triSurfacePointGeoMesh.hxx ├── cpp.hint ├── include │ ├── AC3DsurfaceFormat.hxx │ ├── AC3DsurfaceFormatCore.hxx │ ├── AC3DsurfaceFormatCoreI.hxx │ ├── AC3DsurfaceFormatI.hxx │ ├── AMIInterpolation.hxx │ ├── AMIInterpolationI.hxx │ ├── AMIInterpolationTemplatesI.hxx │ ├── AMIMethod.hxx │ ├── AMIMethodI.hxx │ ├── BSpline.hxx │ ├── BSplineEdge.hxx │ ├── CatmullRomSpline.hxx │ ├── EulerCoordinateRotation.hxx │ ├── FaceCellWave.hxx │ ├── FaceCellWaveI.hxx │ ├── FvMesh_Module.hxx │ ├── GTSsurfaceFormat.hxx │ ├── GTSsurfaceFormatI.hxx │ ├── MeshWave.hxx │ ├── MeshWaveI.hxx │ ├── MeshedSurface.hxx │ ├── MeshedSurfaceI.hxx │ ├── MeshedSurfaceIOAllocator.hxx │ ├── MeshedSurfaceIOI.hxx │ ├── MeshedSurfaceNewI.hxx │ ├── MeshedSurfaceProxy.hxx │ ├── MeshedSurfaceProxyI.hxx │ ├── MeshedSurfaceZonesI.hxx │ ├── MeshedSurfaces.hxx │ ├── MeshedSurfacesFwd.hxx │ ├── NASCore.hxx │ ├── NASedgeFormat.hxx │ ├── NASsurfaceFormat.hxx │ ├── NASsurfaceFormatI.hxx │ ├── OBJedgeFormat.hxx │ ├── OBJstream.hxx │ ├── OBJsurfaceFormat.hxx │ ├── OBJsurfaceFormatI.hxx │ ├── OFFsurfaceFormat.hxx │ ├── OFFsurfaceFormatI.hxx │ ├── OFSsurfaceFormat.hxx │ ├── OFSsurfaceFormatCore.hxx │ ├── OFSsurfaceFormatI.hxx │ ├── PatchEdgeFaceWave.hxx │ ├── PatchEdgeFaceWaveI.hxx │ ├── PointEdgeWave.hxx │ ├── PointEdgeWaveI.hxx │ ├── SMESHsurfaceFormat.hxx │ ├── SMESHsurfaceFormatI.hxx │ ├── STARCDCoordinateRotation.hxx │ ├── STARCDCore.hxx │ ├── STARCDedgeFormat.hxx │ ├── STARCDsurfaceFormat.hxx │ ├── STARCDsurfaceFormatCore.hxx │ ├── STARCDsurfaceFormatI.hxx │ ├── STLpoint.hxx │ ├── STLsurfaceFormat.hxx │ ├── STLsurfaceFormatCore.hxx │ ├── STLsurfaceFormatI.hxx │ ├── STLtriangle.hxx │ ├── STLtriangleI.hxx │ ├── TRIsurfaceFormat.hxx │ ├── TRIsurfaceFormatCore.hxx │ ├── TRIsurfaceFormatI.hxx │ ├── UnsortedMeshedSurface.hxx │ ├── UnsortedMeshedSurfaceI.hxx │ ├── UnsortedMeshedSurfaceNewI.hxx │ ├── UnsortedMeshedSurfaces.hxx │ ├── UnsortedMeshedSurfacesFwd.hxx │ ├── VTKedgeFormat.hxx │ ├── VTKsurfaceFormat.hxx │ ├── VTKsurfaceFormatCore.hxx │ ├── VTKsurfaceFormatI.hxx │ ├── WRLsurfaceFormat.hxx │ ├── WRLsurfaceFormatCore.hxx │ ├── WRLsurfaceFormatI.hxx │ ├── X3DsurfaceFormat.hxx │ ├── X3DsurfaceFormatCore.hxx │ ├── X3DsurfaceFormatI.hxx │ ├── arcEdge.hxx │ ├── axesRotation.hxx │ ├── block.hxx │ ├── blockDescriptor.hxx │ ├── blockDescriptorI.hxx │ ├── blockEdge.hxx │ ├── blockEdgeI.hxx │ ├── blockEdgeList.hxx │ ├── blockFace.hxx │ ├── blockFaceI.hxx │ ├── blockFaceList.hxx │ ├── blockI.hxx │ ├── blockList.hxx │ ├── blockMesh.hxx │ ├── blockMeshTools.hxx │ ├── blockMeshToolsI.hxx │ ├── blockVertex.hxx │ ├── blockVertexList.hxx │ ├── booleanSurface.hxx │ ├── boundaryToFace.hxx │ ├── boxToCell.hxx │ ├── boxToFace.hxx │ ├── boxToPoint.hxx │ ├── cartesianCS.hxx │ ├── cellClassification.hxx │ ├── cellDistFuncs.hxx │ ├── cellDistFuncsTemplatesI.hxx │ ├── cellFeatures.hxx │ ├── cellInfo.hxx │ ├── cellInfoI.hxx │ ├── cellQuality.hxx │ ├── cellSet.hxx │ ├── cellToCell.hxx │ ├── cellToFace.hxx │ ├── cellToPoint.hxx │ ├── cellZoneSet.hxx │ ├── closedTriSurfaceMesh.hxx │ ├── coordSet.hxx │ ├── coordinateRotation.hxx │ ├── coordinateSystem.hxx │ ├── coordinateSystems.hxx │ ├── csvSetWriter.hxx │ ├── csvSetWriterI.hxx │ ├── cyclicACMIGAMGInterface.hxx │ ├── cyclicACMIGAMGInterfaceField.hxx │ ├── cyclicACMILduInterface.hxx │ ├── cyclicACMILduInterfaceField.hxx │ ├── cyclicACMIPointPatch.hxx │ ├── cyclicACMIPointPatchField.hxx │ ├── cyclicACMIPointPatchFields.hxx │ ├── cyclicACMIPolyPatch.hxx │ ├── cyclicACMIPolyPatchI.hxx │ ├── cyclicAMIGAMGInterface.hxx │ ├── cyclicAMIGAMGInterfaceField.hxx │ ├── cyclicAMILduInterface.hxx │ ├── cyclicAMILduInterfaceField.hxx │ ├── cyclicAMIPointPatch.hxx │ ├── cyclicAMIPointPatchField.hxx │ ├── cyclicAMIPointPatchFieldI.hxx │ ├── cyclicAMIPointPatchFields.hxx │ ├── cyclicAMIPolyPatch.hxx │ ├── cyclicAMIPolyPatchI.hxx │ ├── cyclicAMIPolyPatchTemplatesI.hxx │ ├── cyclicRepeatAMIGAMGInterface.hxx │ ├── cyclicRepeatAMIGAMGInterfaceField.hxx │ ├── cyclicRepeatAMILduInterface.hxx │ ├── cyclicRepeatAMILduInterfaceField.hxx │ ├── cyclicRepeatAMIPointPatch.hxx │ ├── cyclicRepeatAMIPointPatchField.hxx │ ├── cyclicRepeatAMIPointPatchFields.hxx │ ├── cyclicRepeatAMIPolyPatch.hxx │ ├── cyclicRepeatAMIPolyPatchI.hxx │ ├── cyclicSector.hxx │ ├── cylinderAnnulusToCell.hxx │ ├── cylinderAnnulusToFace.hxx │ ├── cylinderToCell.hxx │ ├── cylinderToFace.hxx │ ├── cylindrical.hxx │ ├── cylindricalCS.hxx │ ├── directAMI.hxx │ ├── edgeFaceCirculator.hxx │ ├── edgeFaceCirculatorI.hxx │ ├── edgeIntersections.hxx │ ├── edgeMesh.hxx │ ├── edgeMeshFormat.hxx │ ├── edgeMeshFormatsCore.hxx │ ├── edgeMeshI.hxx │ ├── edgeSurface.hxx │ ├── ensightSetWriter.hxx │ ├── ensightSetWriterI.hxx │ ├── extendedEdgeMesh.hxx │ ├── extendedEdgeMeshFormat.hxx │ ├── extendedEdgeMeshI.hxx │ ├── extendedEdgeMeshTemplatesI.hxx │ ├── extendedFeatureEdgeMesh.hxx │ ├── extendedFeatureEdgeMeshFormat.hxx │ ├── extrudeModel.hxx │ ├── extrudedMesh.hxx │ ├── extrudedMeshI.hxx │ ├── faceAreaIntersect.hxx │ ├── faceAreaIntersectI.hxx │ ├── faceAreaWeightAMI.hxx │ ├── faceSet.hxx │ ├── faceToCell.hxx │ ├── faceToFace.hxx │ ├── faceToPoint.hxx │ ├── faceTriangulation.hxx │ ├── faceZoneSet.hxx │ ├── faceZoneToCell.hxx │ ├── faceZoneToFaceZone.hxx │ ├── featureEdgeMesh.hxx │ ├── fieldDictionary.hxx │ ├── fieldToCell.hxx │ ├── geometricSurfacePatch.hxx │ ├── geometricSurfacePatchList.hxx │ ├── geompack.hxx │ ├── gnuplotSetWriter.hxx │ ├── gnuplotSetWriterI.hxx │ ├── gradingDescriptor.hxx │ ├── gradingDescriptors.hxx │ ├── hashSignedLabel.hxx │ ├── intersectedSurface.hxx │ ├── jplotSetWriter.hxx │ ├── jplotSetWriterI.hxx │ ├── labelPairLookup.hxx │ ├── labelToCell.hxx │ ├── labelToFace.hxx │ ├── labelToPoint.hxx │ ├── labelledTri.hxx │ ├── labelledTriI.hxx │ ├── lineDivide.hxx │ ├── lineEdge.hxx │ ├── linearDirection.hxx │ ├── linearNormal.hxx │ ├── linearRadial.hxx │ ├── localPointRegion.hxx │ ├── mapNearestAMI.hxx │ ├── mappedPatchBase.hxx │ ├── mappedPatchBaseI.hxx │ ├── mappedPatchBaseTemplatesI.hxx │ ├── mappedPointPatch.hxx │ ├── mappedPolyPatch.hxx │ ├── mappedVariableThicknessWallPolyPatch.hxx │ ├── mappedWallPointPatch.hxx │ ├── mappedWallPolyPatch.hxx │ ├── meshSearch.hxx │ ├── meshSearchFACE_CENTRE_TRISMeshObject.hxx │ ├── meshSearchMeshObject.hxx │ ├── meshStructure.hxx │ ├── meshStructureI.hxx │ ├── meshTools.hxx │ ├── meshToolsI.hxx │ ├── meshTriangulation.hxx │ ├── minData.hxx │ ├── minDataI.hxx │ ├── momentOfInertia.hxx │ ├── namedBlock.hxx │ ├── namedVertex.hxx │ ├── nbrToCell.hxx │ ├── nearestToCell.hxx │ ├── nearestToPoint.hxx │ ├── normalToFace.hxx │ ├── orientedSurface.hxx │ ├── partialFaceAreaWeightAMI.hxx │ ├── patchDataWave.hxx │ ├── patchDataWaveI.hxx │ ├── patchEdgeFaceInfo.hxx │ ├── patchEdgeFaceInfoI.hxx │ ├── patchEdgeFaceRegion.hxx │ ├── patchEdgeFaceRegionI.hxx │ ├── patchEdgeFaceRegions.hxx │ ├── patchEdgeFaceRegionsI.hxx │ ├── patchPatchDist.hxx │ ├── patchToFace.hxx │ ├── patchWave.hxx │ ├── planeExtrusion.hxx │ ├── pointEdgePoint.hxx │ ├── pointEdgePointI.hxx │ ├── pointSet.hxx │ ├── pointToCell.hxx │ ├── pointToFace.hxx │ ├── pointToPoint.hxx │ ├── pointToPointPlanarInterpolation.hxx │ ├── pointToPointPlanarInterpolationI.hxx │ ├── pointTopoDistanceData.hxx │ ├── pointTopoDistanceDataI.hxx │ ├── pointVertex.hxx │ ├── pointZoneSet.hxx │ ├── polyLine.hxx │ ├── polyLineEdge.hxx │ ├── polyMeshZipUpCells.hxx │ ├── primitiveMeshGeometry.hxx │ ├── projectCurveEdge.hxx │ ├── projectEdge.hxx │ ├── projectFace.hxx │ ├── projectVertex.hxx │ ├── radial.hxx │ ├── rawSetWriter.hxx │ ├── rawSetWriterI.hxx │ ├── regionCoupledBase.hxx │ ├── regionCoupledBaseGAMGInterface.hxx │ ├── regionCoupledBaseI.hxx │ ├── regionCoupledGAMGInterface.hxx │ ├── regionCoupledGAMGInterfaceField.hxx │ ├── regionCoupledLduInterface.hxx │ ├── regionCoupledPointPatch.hxx │ ├── regionCoupledPolyPatch.hxx │ ├── regionCoupledWallGAMGInterface.hxx │ ├── regionCoupledWallGAMGInterfaceField.hxx │ ├── regionCoupledWallPointPatch.hxx │ ├── regionCoupledWallPolyPatch.hxx │ ├── regionSplit.hxx │ ├── regionToCell.hxx │ ├── regionToFace.hxx │ ├── renumberMethod.hxx │ ├── rotatedBoxToCell.hxx │ ├── searchableBox.hxx │ ├── searchableCylinder.hxx │ ├── searchableDisk.hxx │ ├── searchableExtrudedCircle.hxx │ ├── searchablePlane.hxx │ ├── searchablePlate.hxx │ ├── searchableSphere.hxx │ ├── searchableSurface.hxx │ ├── searchableSurfaceCollection.hxx │ ├── searchableSurfaceToFaceZone.hxx │ ├── searchableSurfaceWithGaps.hxx │ ├── searchableSurfaces.hxx │ ├── searchableSurfacesQueries.hxx │ ├── sector.hxx │ ├── setAndNormalToFaceZone.hxx │ ├── setToCellZone.hxx │ ├── setToFaceZone.hxx │ ├── setToPointZone.hxx │ ├── setsToFaceZone.hxx │ ├── shapeToCell.hxx │ ├── sigmaRadial.hxx │ ├── sortLabelledTri.hxx │ ├── sphereToCell.hxx │ ├── splineEdge.hxx │ ├── surfFields.hxx │ ├── surfFieldsFwd.hxx │ ├── surfGeoMesh.hxx │ ├── surfMesh.hxx │ ├── surfPointFields.hxx │ ├── surfPointFieldsFwd.hxx │ ├── surfPointGeoMesh.hxx │ ├── surfZone.hxx │ ├── surfZoneIOList.hxx │ ├── surfZoneIdentifier.hxx │ ├── surfZoneIdentifierList.hxx │ ├── surfZoneList.hxx │ ├── surfaceFeatures.hxx │ ├── surfaceFormatsCore.hxx │ ├── surfaceIntersection.hxx │ ├── surfaceIntersectionI.hxx │ ├── surfaceLocation.hxx │ ├── surfacePatch.hxx │ ├── surfacePatchIOList.hxx │ ├── surfacePatchList.hxx │ ├── surfaceRegistry.hxx │ ├── surfaceSets.hxx │ ├── surfaceToCell.hxx │ ├── surfaceToPoint.hxx │ ├── sweptFaceAreaWeightAMI.hxx │ ├── targetVolumeToCell.hxx │ ├── tetOverlapVolume.hxx │ ├── topoDistanceData.hxx │ ├── topoDistanceDataI.hxx │ ├── topoSet.hxx │ ├── topoSetSource.hxx │ ├── treeDataEdge.hxx │ ├── treeDataFace.hxx │ ├── treeDataPoint.hxx │ ├── treeDataPrimitivePatch.hxx │ ├── treeDataPrimitivePatchI.hxx │ ├── treeDataTriSurface.hxx │ ├── triSurface.hxx │ ├── triSurfaceFields.hxx │ ├── triSurfaceFieldsFwd.hxx │ ├── triSurfaceGeoMesh.hxx │ ├── triSurfaceMesh.hxx │ ├── triSurfacePointGeoMesh.hxx │ ├── triSurfaceRegionSearch.hxx │ ├── triSurfaceSearch.hxx │ ├── triSurfaceTools.hxx │ ├── triangleFuncs.hxx │ ├── twoDPointCorrector.hxx │ ├── vtkSetWriter.hxx │ ├── vtkSetWriterI.hxx │ ├── vtkUnstructuredReader.hxx │ ├── vtkUnstructuredReaderI.hxx │ ├── wallPoint.hxx │ ├── wallPointData.hxx │ ├── wallPointDataI.hxx │ ├── wallPointData_Imp.hxx │ ├── wallPointI.hxx │ ├── wedge.hxx │ ├── writer.hxx │ ├── writerI.hxx │ ├── writers.hxx │ ├── xmgraceSetWriter.hxx │ ├── xmgraceSetWriterI.hxx │ ├── zoneToCell.hxx │ ├── zoneToFace.hxx │ └── zoneToPoint.hxx └── readSTLASCII.cxx ├── TnbFvMotionSolver ├── TnbFvMotionSolver.vcxproj ├── TnbFvMotionSolver.vcxproj.filters ├── TnbLib │ └── fvMotionSolver │ │ ├── fvMotionSolvers │ │ ├── componentDisplacement │ │ │ └── componentLaplacian │ │ │ │ ├── displacementComponentLaplacianFvMotionSolver.cxx │ │ │ │ └── displacementComponentLaplacianFvMotionSolver.hxx │ │ ├── componentVelocity │ │ │ └── componentLaplacian │ │ │ │ ├── velocityComponentLaplacianFvMotionSolver.cxx │ │ │ │ └── velocityComponentLaplacianFvMotionSolver.hxx │ │ ├── displacement │ │ │ ├── SBRStress │ │ │ │ ├── displacementSBRStressFvMotionSolver.cxx │ │ │ │ └── displacementSBRStressFvMotionSolver.hxx │ │ │ └── laplacian │ │ │ │ ├── displacementLaplacianFvMotionSolver.cxx │ │ │ │ └── displacementLaplacianFvMotionSolver.hxx │ │ ├── fvMotionSolver │ │ │ ├── fvMotionSolver.cxx │ │ │ ├── fvMotionSolver.hxx │ │ │ ├── fvMotionSolverI.hxx │ │ │ └── fvMotionSolverTemplates.cxx-backup │ │ └── velocity │ │ │ └── laplacian │ │ │ ├── velocityLaplacianFvMotionSolver.cxx │ │ │ └── velocityLaplacianFvMotionSolver.hxx │ │ ├── fvPatchFields │ │ └── derived │ │ │ ├── cellMotion │ │ │ ├── cellMotionFvPatchField.cxx-backup │ │ │ ├── cellMotionFvPatchField.hxx │ │ │ ├── cellMotionFvPatchFieldI.hxx │ │ │ ├── cellMotionFvPatchFields.cxx │ │ │ ├── cellMotionFvPatchFields.hxx │ │ │ └── cellMotionFvPatchFieldsFwd.hxx │ │ │ └── surfaceSlipDisplacement │ │ │ ├── surfaceSlipDisplacementFvPatchField.hxx │ │ │ ├── surfaceSlipDisplacementFvPatchFields.cxx │ │ │ ├── surfaceSlipDisplacementFvPatchFields.hxx │ │ │ └── surfaceSlipDisplacementFvPatchFieldsFwd.hxx │ │ ├── module │ │ └── FvMotionSolver_Module.hxx │ │ ├── motionDiffusivity │ │ ├── directional │ │ │ ├── directionalDiffusivity.cxx │ │ │ └── directionalDiffusivity.hxx │ │ ├── file │ │ │ ├── fileDiffusivity.cxx │ │ │ └── fileDiffusivity.hxx │ │ ├── inverseDistance │ │ │ ├── inverseDistanceDiffusivity.cxx │ │ │ └── inverseDistanceDiffusivity.hxx │ │ ├── inverseFaceDistance │ │ │ ├── inverseFaceDistanceDiffusivity.cxx │ │ │ └── inverseFaceDistanceDiffusivity.hxx │ │ ├── inversePointDistance │ │ │ ├── inversePointDistanceDiffusivity.cxx │ │ │ └── inversePointDistanceDiffusivity.hxx │ │ ├── inverseVolume │ │ │ ├── inverseVolumeDiffusivity.cxx │ │ │ └── inverseVolumeDiffusivity.hxx │ │ ├── manipulators │ │ │ ├── exponential │ │ │ │ ├── exponentialDiffusivity.cxx │ │ │ │ └── exponentialDiffusivity.hxx │ │ │ └── quadratic │ │ │ │ ├── quadraticDiffusivity.cxx │ │ │ │ └── quadraticDiffusivity.hxx │ │ ├── motionDiffusivity │ │ │ ├── motionDiffusivity.cxx │ │ │ └── motionDiffusivity.hxx │ │ ├── motionDirectional │ │ │ ├── motionDirectionalDiffusivity.cxx │ │ │ └── motionDirectionalDiffusivity.hxx │ │ └── uniform │ │ │ ├── uniformDiffusivity.cxx │ │ │ └── uniformDiffusivity.hxx │ │ └── pointPatchFields │ │ └── derived │ │ ├── angularOscillatingDisplacement │ │ ├── angularOscillatingDisplacementPointPatchVectorField.cxx │ │ └── angularOscillatingDisplacementPointPatchVectorField.hxx │ │ ├── angularOscillatingVelocity │ │ ├── angularOscillatingVelocityPointPatchVectorField.cxx │ │ └── angularOscillatingVelocityPointPatchVectorField.hxx │ │ ├── oscillatingDisplacement │ │ ├── oscillatingDisplacementPointPatchVectorField.cxx │ │ └── oscillatingDisplacementPointPatchVectorField.hxx │ │ ├── oscillatingVelocity │ │ ├── oscillatingVelocityPointPatchVectorField.cxx │ │ └── oscillatingVelocityPointPatchVectorField.hxx │ │ ├── surfaceDisplacement │ │ ├── surfaceDisplacementPointPatchVectorField.cxx │ │ └── surfaceDisplacementPointPatchVectorField.hxx │ │ ├── surfaceSlipDisplacement │ │ ├── surfaceSlipDisplacementPointPatchVectorField.cxx │ │ ├── surfaceSlipDisplacementPointPatchVectorField.hxx │ │ └── surfaceSlipDisplacementPointPatchVectorFieldIO.cxx │ │ ├── timeVaryingMappedFixedValue │ │ ├── timeVaryingMappedFixedValuePointPatchField.cxx-backup │ │ ├── timeVaryingMappedFixedValuePointPatchField.hxx │ │ ├── timeVaryingMappedFixedValuePointPatchFieldI.hxx │ │ ├── timeVaryingMappedFixedValuePointPatchFields.cxx │ │ └── timeVaryingMappedFixedValuePointPatchFields.hxx │ │ ├── uniformInterpolatedDisplacement │ │ ├── uniformInterpolatedDisplacementPointPatchVectorField.cxx │ │ └── uniformInterpolatedDisplacementPointPatchVectorField.hxx │ │ └── waveDisplacement │ │ ├── waveDisplacementPointPatchVectorField.cxx │ │ └── waveDisplacementPointPatchVectorField.hxx └── include │ ├── FvMotionSolver_Module.hxx │ ├── angularOscillatingDisplacementPointPatchVectorField.hxx │ ├── angularOscillatingVelocityPointPatchVectorField.hxx │ ├── cellMotionFvPatchField.hxx │ ├── cellMotionFvPatchFieldI.hxx │ ├── cellMotionFvPatchFields.hxx │ ├── cellMotionFvPatchFieldsFwd.hxx │ ├── directionalDiffusivity.hxx │ ├── displacementComponentLaplacianFvMotionSolver.hxx │ ├── displacementLaplacianFvMotionSolver.hxx │ ├── displacementSBRStressFvMotionSolver.hxx │ ├── exponentialDiffusivity.hxx │ ├── fileDiffusivity.hxx │ ├── fvMotionSolver.hxx │ ├── fvMotionSolverI.hxx │ ├── inverseDistanceDiffusivity.hxx │ ├── inverseFaceDistanceDiffusivity.hxx │ ├── inversePointDistanceDiffusivity.hxx │ ├── inverseVolumeDiffusivity.hxx │ ├── motionDiffusivity.hxx │ ├── motionDirectionalDiffusivity.hxx │ ├── oscillatingDisplacementPointPatchVectorField.hxx │ ├── oscillatingVelocityPointPatchVectorField.hxx │ ├── quadraticDiffusivity.hxx │ ├── surfaceDisplacementPointPatchVectorField.hxx │ ├── surfaceSlipDisplacementFvPatchField.hxx │ ├── surfaceSlipDisplacementFvPatchFields.hxx │ ├── surfaceSlipDisplacementFvPatchFieldsFwd.hxx │ ├── surfaceSlipDisplacementPointPatchVectorField.hxx │ ├── timeVaryingMappedFixedValuePointPatchField.hxx │ ├── timeVaryingMappedFixedValuePointPatchFieldI.hxx │ ├── timeVaryingMappedFixedValuePointPatchFields.hxx │ ├── uniformDiffusivity.hxx │ ├── uniformInterpolatedDisplacementPointPatchVectorField.hxx │ ├── velocityComponentLaplacianFvMotionSolver.hxx │ ├── velocityLaplacianFvMotionSolver.hxx │ └── waveDisplacementPointPatchVectorField.hxx ├── TnbFvOptions ├── TnbFvOptions.vcxproj ├── TnbFvOptions.vcxproj.filters ├── TnbLib │ └── fvOptions │ │ ├── cellSetOption │ │ ├── cellSetOption.cxx │ │ ├── cellSetOption.hxx │ │ ├── cellSetOptionI.hxx │ │ └── cellSetOptionIO.cxx │ │ ├── constraints │ │ ├── fixedTemperatureConstraint │ │ │ ├── fixedTemperatureConstraint.cxx │ │ │ └── fixedTemperatureConstraint.hxx │ │ └── fixedValueConstraint │ │ │ ├── FixedValueConstraint.cxx │ │ │ ├── FixedValueConstraint.hxx │ │ │ └── fixedValueConstraints.cxx │ │ ├── corrections │ │ ├── limitTemperature │ │ │ ├── limitTemperature.cxx │ │ │ └── limitTemperature.hxx │ │ └── limitVelocity │ │ │ ├── limitVelocity.cxx │ │ │ └── limitVelocity.hxx │ │ ├── interRegionOption │ │ ├── interRegionOption.cxx │ │ ├── interRegionOption.hxx │ │ ├── interRegionOptionI.hxx │ │ └── interRegionOptionIO.cxx │ │ ├── module │ │ └── FvOptions_Module.hxx │ │ └── sources │ │ ├── derived │ │ ├── accelerationSource │ │ │ ├── accelerationSource.cxx │ │ │ ├── accelerationSource.hxx │ │ │ ├── accelerationSourceTemplates.cxx-backup │ │ │ └── accelerationSourceTemplatesI.hxx │ │ ├── actuationDiskSource │ │ │ ├── actuationDiskSource.cxx │ │ │ ├── actuationDiskSource.hxx │ │ │ ├── actuationDiskSourceTemplates.cxx-backup │ │ │ └── actuationDiskSourceTemplatesI.hxx │ │ ├── buoyancyEnergy │ │ │ ├── buoyancyEnergy.cxx │ │ │ ├── buoyancyEnergy.hxx │ │ │ └── buoyancyEnergyIO.cxx │ │ ├── buoyancyForce │ │ │ ├── buoyancyForce.cxx │ │ │ ├── buoyancyForce.hxx │ │ │ └── buoyancyForceIO.cxx │ │ ├── damping │ │ │ ├── damping │ │ │ │ ├── damping.cxx │ │ │ │ └── damping.hxx │ │ │ ├── isotropicDamping │ │ │ │ ├── isotropicDamping.cxx │ │ │ │ └── isotropicDamping.hxx │ │ │ └── verticalDamping │ │ │ │ ├── verticalDamping.cxx │ │ │ │ └── verticalDamping.hxx │ │ ├── effectivenessHeatExchangerSource │ │ │ ├── effectivenessHeatExchangerSource.cxx │ │ │ └── effectivenessHeatExchangerSource.hxx │ │ ├── explicitPorositySource │ │ │ ├── explicitPorositySource.cxx │ │ │ └── explicitPorositySource.hxx │ │ ├── meanVelocityForce │ │ │ ├── meanVelocityForce.cxx │ │ │ ├── meanVelocityForce.hxx │ │ │ ├── meanVelocityForceIO.cxx │ │ │ └── patchMeanVelocityForce │ │ │ │ ├── patchMeanVelocityForce.cxx │ │ │ │ └── patchMeanVelocityForce.hxx │ │ ├── phaseLimitStabilization │ │ │ ├── PhaseLimitStabilization.cxx-backup │ │ │ ├── PhaseLimitStabilization.hxx │ │ │ ├── PhaseLimitStabilization_Imp.hxx │ │ │ └── phaseLimitStabilizations.cxx │ │ ├── radialActuationDiskSource │ │ │ ├── radialActuationDiskSource.cxx │ │ │ ├── radialActuationDiskSource.hxx │ │ │ ├── radialActuationDiskSourceTemplates.cxx-backup │ │ │ └── radialActuationDiskSourceTemplatesI.hxx │ │ ├── rotorDiskSource │ │ │ ├── bladeModel │ │ │ │ ├── bladeModel.cxx │ │ │ │ └── bladeModel.hxx │ │ │ ├── profileModel │ │ │ │ ├── lookup │ │ │ │ │ ├── lookupProfile.cxx │ │ │ │ │ └── lookupProfile.hxx │ │ │ │ ├── profileModel.cxx │ │ │ │ ├── profileModel.hxx │ │ │ │ ├── profileModelList.cxx │ │ │ │ ├── profileModelList.hxx │ │ │ │ └── series │ │ │ │ │ ├── seriesProfile.cxx │ │ │ │ │ └── seriesProfile.hxx │ │ │ ├── rotorDiskSource.cxx │ │ │ ├── rotorDiskSource.hxx │ │ │ ├── rotorDiskSourceI.hxx │ │ │ ├── rotorDiskSourceNamedEnum.cxx │ │ │ ├── rotorDiskSourceTemplates.cxx-backup │ │ │ ├── rotorDiskSourceTemplatesI.hxx │ │ │ └── trimModel │ │ │ │ ├── fixed │ │ │ │ ├── fixedTrim.cxx │ │ │ │ └── fixedTrim.hxx │ │ │ │ ├── targetCoeff │ │ │ │ ├── targetCoeffTrim.cxx │ │ │ │ └── targetCoeffTrim.hxx │ │ │ │ └── trimModel │ │ │ │ ├── trimModel.cxx │ │ │ │ ├── trimModel.hxx │ │ │ │ └── trimModelNew.cxx │ │ ├── solidEqulibriumEnergySource │ │ │ ├── solidEqulibriumEnergySource.cxx │ │ │ └── solidEqulibriumEnergySource.hxx │ │ ├── solidificationMeltingSource │ │ │ ├── solidificationMeltingSource.cxx │ │ │ ├── solidificationMeltingSource.hxx │ │ │ ├── solidificationMeltingSourceIO.cxx │ │ │ ├── solidificationMeltingSourceNamedEnum.cxx │ │ │ ├── solidificationMeltingSourceTemplates.cxx-backup │ │ │ └── solidificationMeltingSourceTemplatesI.hxx │ │ ├── tabulatedAccelerationSource │ │ │ ├── tabulated6DoFAcceleration │ │ │ │ ├── tabulated6DoFAcceleration.cxx │ │ │ │ └── tabulated6DoFAcceleration.hxx │ │ │ ├── tabulatedAccelerationSource.cxx │ │ │ ├── tabulatedAccelerationSource.hxx │ │ │ ├── tabulatedAccelerationSourceTemplates.cxx-backup │ │ │ └── tabulatedAccelerationSourceTemplatesI.hxx │ │ └── volumeFractionSource │ │ │ ├── volumeFractionSource.cxx │ │ │ └── volumeFractionSource.hxx │ │ ├── general │ │ ├── codedSource │ │ │ ├── CodedSource.cxx-backup │ │ │ ├── CodedSource.hxx │ │ │ ├── CodedSourceIO.cxx-backup │ │ │ ├── CodedSourceIO_Imp.hxx │ │ │ ├── CodedSource_Imp.hxx │ │ │ └── codedSources.cxx │ │ └── semiImplicitSource │ │ │ ├── SemiImplicitSource.cxx-backup │ │ │ ├── SemiImplicitSource.hxx │ │ │ ├── SemiImplicitSourceI.hxx │ │ │ ├── SemiImplicitSourceIO.cxx-backup │ │ │ ├── SemiImplicitSourceIO_Imp.hxx │ │ │ ├── SemiImplicitSource_Imp.hxx │ │ │ └── semiImplicitSources.cxx │ │ └── interRegion │ │ ├── interRegionExplicitPorositySource │ │ ├── interRegionExplicitPorositySource.cxx │ │ └── interRegionExplicitPorositySource.hxx │ │ └── interRegionHeatTransfer │ │ ├── constantHeatTransfer │ │ ├── constantHeatTransfer.cxx │ │ └── constantHeatTransfer.hxx │ │ ├── interRegionHeatTransferModel │ │ ├── interRegionHeatTransferModel.cxx │ │ ├── interRegionHeatTransferModel.hxx │ │ ├── interRegionHeatTransferModelI.hxx │ │ ├── interRegionHeatTransferModelIO.cxx │ │ ├── interRegionHeatTransferModelTemplates.cxx-backup │ │ └── interRegionHeatTransferModelTemplatesI.hxx │ │ ├── tabulatedHeatTransfer │ │ ├── tabulatedHeatTransfer.cxx │ │ └── tabulatedHeatTransfer.hxx │ │ └── variableHeatTransfer │ │ ├── variableHeatTransfer.cxx │ │ └── variableHeatTransfer.hxx └── include │ ├── CodedSource.hxx │ ├── CodedSourceIO_Imp.hxx │ ├── CodedSource_Imp.hxx │ ├── FixedValueConstraint.hxx │ ├── FvOptions_Module.hxx │ ├── PhaseLimitStabilization.hxx │ ├── PhaseLimitStabilization_Imp.hxx │ ├── SemiImplicitSource.hxx │ ├── SemiImplicitSourceI.hxx │ ├── SemiImplicitSourceIO_Imp.hxx │ ├── SemiImplicitSource_Imp.hxx │ ├── accelerationSource.hxx │ ├── accelerationSourceTemplatesI.hxx │ ├── actuationDiskSource.hxx │ ├── actuationDiskSourceTemplatesI.hxx │ ├── bladeModel.hxx │ ├── buoyancyEnergy.hxx │ ├── buoyancyForce.hxx │ ├── cellSetOption.hxx │ ├── cellSetOptionI.hxx │ ├── constantHeatTransfer.hxx │ ├── damping.hxx │ ├── effectivenessHeatExchangerSource.hxx │ ├── explicitPorositySource.hxx │ ├── fixedTemperatureConstraint.hxx │ ├── fixedTrim.hxx │ ├── interRegionExplicitPorositySource.hxx │ ├── interRegionHeatTransferModel.hxx │ ├── interRegionHeatTransferModelI.hxx │ ├── interRegionHeatTransferModelTemplatesI.hxx │ ├── interRegionOption.hxx │ ├── interRegionOptionI.hxx │ ├── isotropicDamping.hxx │ ├── limitTemperature.hxx │ ├── limitVelocity.hxx │ ├── lookupProfile.hxx │ ├── meanVelocityForce.hxx │ ├── patchMeanVelocityForce.hxx │ ├── profileModel.hxx │ ├── profileModelList.hxx │ ├── radialActuationDiskSource.hxx │ ├── radialActuationDiskSourceTemplatesI.hxx │ ├── rotorDiskSource.hxx │ ├── rotorDiskSourceI.hxx │ ├── rotorDiskSourceTemplatesI.hxx │ ├── seriesProfile.hxx │ ├── solidEqulibriumEnergySource.hxx │ ├── solidificationMeltingSource.hxx │ ├── solidificationMeltingSourceTemplatesI.hxx │ ├── tabulated6DoFAcceleration.hxx │ ├── tabulatedAccelerationSource.hxx │ ├── tabulatedAccelerationSourceTemplatesI.hxx │ ├── tabulatedHeatTransfer.hxx │ ├── targetCoeffTrim.hxx │ ├── trimModel.hxx │ ├── variableHeatTransfer.hxx │ ├── verticalDamping.hxx │ └── volumeFractionSource.hxx ├── TnbLagrangian ├── TnbLagrangian.vcxproj ├── TnbLagrangian.vcxproj.filters ├── TnbLib │ ├── lagrangian │ │ ├── Allwmake │ │ ├── DSMC │ │ │ ├── clouds │ │ │ │ ├── Templates │ │ │ │ │ └── DSMCCloud │ │ │ │ │ │ ├── DSMCCloudTemplate.cxx-backup │ │ │ │ │ │ ├── DSMCCloudTemplate.hxx │ │ │ │ │ │ ├── DSMCCloudTemplateI.hxx │ │ │ │ │ │ └── DSMCCloudTemplate_Imp.hxx │ │ │ │ ├── baseClasses │ │ │ │ │ └── DSMCBaseCloud │ │ │ │ │ │ ├── DSMCBaseCloud.cxx │ │ │ │ │ │ └── DSMCBaseCloud.hxx │ │ │ │ └── derived │ │ │ │ │ └── dsmcCloud │ │ │ │ │ └── dsmcCloud.hxx │ │ │ ├── parcels │ │ │ │ ├── Templates │ │ │ │ │ └── DSMCParcel │ │ │ │ │ │ ├── DSMCParcelTemplate.cxx-backup │ │ │ │ │ │ ├── DSMCParcelTemplate.hxx │ │ │ │ │ │ ├── DSMCParcelTemplateI.hxx │ │ │ │ │ │ ├── DSMCParcelTemplateIO.cxx-backup │ │ │ │ │ │ ├── DSMCParcelTemplateIO_Imp.hxx │ │ │ │ │ │ └── DSMCParcelTemplate_Imp.hxx │ │ │ │ └── derived │ │ │ │ │ └── dsmcParcel │ │ │ │ │ ├── defineDSMCParcel.cxx │ │ │ │ │ ├── dsmcParcel.cxx │ │ │ │ │ ├── dsmcParcel.hxx │ │ │ │ │ ├── makeDSMCParcelBinaryCollisionModels.cxx │ │ │ │ │ ├── makeDSMCParcelInflowBoundaryModels.cxx │ │ │ │ │ └── makeDSMCParcelWallInteractionModels.cxx │ │ │ └── submodels │ │ │ │ ├── BinaryCollisionModel │ │ │ │ ├── BinaryCollisionModel │ │ │ │ │ ├── BinaryCollisionModel.cxx-backup │ │ │ │ │ ├── BinaryCollisionModel.hxx │ │ │ │ │ ├── BinaryCollisionModelI.hxx │ │ │ │ │ ├── BinaryCollisionModelNew.cxx-backup │ │ │ │ │ └── BinaryCollisionModelNew_Imp.hxx │ │ │ │ ├── LarsenBorgnakkeVariableHardSphere │ │ │ │ │ ├── LarsenBorgnakkeVariableHardSphere.cxx-backup │ │ │ │ │ ├── LarsenBorgnakkeVariableHardSphere.hxx │ │ │ │ │ └── LarsenBorgnakkeVariableHardSphereI.hxx │ │ │ │ ├── NoBinaryCollision │ │ │ │ │ ├── NoBinaryCollision.cxx-backup │ │ │ │ │ ├── NoBinaryCollision.hxx │ │ │ │ │ └── NoBinaryCollisionI.hxx │ │ │ │ └── VariableHardSphere │ │ │ │ │ ├── VariableHardSphere.cxx-backup │ │ │ │ │ ├── VariableHardSphere.hxx │ │ │ │ │ └── VariableHardSphereI.hxx │ │ │ │ ├── InflowBoundaryModel │ │ │ │ ├── FreeStream │ │ │ │ │ ├── FreeStream.cxx-backup │ │ │ │ │ ├── FreeStream.hxx │ │ │ │ │ └── FreeStreamI.hxx │ │ │ │ ├── InflowBoundaryModel │ │ │ │ │ ├── InflowBoundaryModel.cxx-backup │ │ │ │ │ ├── InflowBoundaryModel.hxx │ │ │ │ │ ├── InflowBoundaryModelI.hxx │ │ │ │ │ ├── InflowBoundaryModelNew.cxx-backup │ │ │ │ │ └── InflowBoundaryModelNew_Imp.hxx │ │ │ │ └── NoInflow │ │ │ │ │ ├── NoInflow.cxx-backup │ │ │ │ │ ├── NoInflow.hxx │ │ │ │ │ └── NoInflowI.hxx │ │ │ │ └── WallInteractionModel │ │ │ │ ├── MaxwellianThermal │ │ │ │ ├── MaxwellianThermal.cxx-backup │ │ │ │ ├── MaxwellianThermal.hxx │ │ │ │ └── MaxwellianThermalI.hxx │ │ │ │ ├── MixedDiffuseSpecular │ │ │ │ ├── MixedDiffuseSpecular.cxx-backup │ │ │ │ ├── MixedDiffuseSpecular.hxx │ │ │ │ └── MixedDiffuseSpecularI.hxx │ │ │ │ ├── SpecularReflection │ │ │ │ ├── SpecularReflection.cxx-backup │ │ │ │ ├── SpecularReflection.hxx │ │ │ │ └── SpecularReflectionI.hxx │ │ │ │ └── WallInteractionModel │ │ │ │ ├── WallInteractionModel.cxx-backup │ │ │ │ ├── WallInteractionModel.hxx │ │ │ │ ├── WallInteractionModelI.hxx │ │ │ │ ├── WallInteractionModelNew.cxx-backup │ │ │ │ └── WallInteractionModelNew_Imp.hxx │ │ ├── basic │ │ │ ├── Cloud │ │ │ │ ├── CloudTemplate.cxx-backup │ │ │ │ ├── CloudTemplate.hxx │ │ │ │ ├── CloudTemplateI.hxx │ │ │ │ ├── CloudTemplateIO.cxx-backup │ │ │ │ └── CloudTemplateIO_Imp.hxx │ │ │ ├── IOPosition │ │ │ │ ├── IOPosition.cxx-backup │ │ │ │ ├── IOPosition.hxx │ │ │ │ └── IOPositionI.hxx │ │ │ ├── InteractionLists │ │ │ │ ├── InteractionLists.cxx-backup │ │ │ │ ├── InteractionLists.hxx │ │ │ │ ├── InteractionListsI.hxx │ │ │ │ ├── InteractionLists_Imp.hxx │ │ │ │ └── referredWallFace │ │ │ │ │ ├── referredWallFace.cxx │ │ │ │ │ ├── referredWallFace.hxx │ │ │ │ │ └── referredWallFaceI.hxx │ │ │ ├── indexedParticle │ │ │ │ ├── indexedParticle.hxx │ │ │ │ ├── indexedParticleCloud.cxx │ │ │ │ └── indexedParticleCloud.hxx │ │ │ ├── particle │ │ │ │ ├── particle.cxx │ │ │ │ ├── particle.hxx │ │ │ │ ├── particleI.hxx │ │ │ │ ├── particleIO.cxx │ │ │ │ ├── particleMacros.hxx │ │ │ │ ├── particleTemplates.cxx-backup │ │ │ │ └── particleTemplatesI.hxx │ │ │ └── passiveParticle │ │ │ │ ├── passiveParticle.hxx │ │ │ │ ├── passiveParticleCloud.cxx │ │ │ │ └── passiveParticleCloud.hxx │ │ ├── coalCombustion │ │ │ ├── coalCloud │ │ │ │ └── coalCloud.hxx │ │ │ ├── coalCloudList │ │ │ │ ├── coalCloudList.cxx │ │ │ │ ├── coalCloudList.hxx │ │ │ │ └── coalCloudListI.hxx │ │ │ ├── coalParcel │ │ │ │ ├── coalParcel.hxx │ │ │ │ └── makeCoalParcelSubmodels.cxx │ │ │ ├── include │ │ │ │ └── makeCoalParcelSurfaceReactionModels.hxx │ │ │ └── submodels │ │ │ │ └── surfaceReactionModel │ │ │ │ ├── COxidationDiffusionLimitedRate │ │ │ │ ├── COxidationDiffusionLimitedRate.cxx-backup │ │ │ │ ├── COxidationDiffusionLimitedRate.hxx │ │ │ │ └── COxidationDiffusionLimitedRateI.hxx │ │ │ │ ├── COxidationHurtMitchell │ │ │ │ ├── COxidationHurtMitchell.cxx-backup │ │ │ │ ├── COxidationHurtMitchell.hxx │ │ │ │ └── COxidationHurtMitchellI.hxx │ │ │ │ ├── COxidationIntrinsicRate │ │ │ │ ├── COxidationIntrinsicRate.cxx-backup │ │ │ │ ├── COxidationIntrinsicRate.hxx │ │ │ │ └── COxidationIntrinsicRateI.hxx │ │ │ │ ├── COxidationKineticDiffusionLimitedRate │ │ │ │ ├── COxidationKineticDiffusionLimitedRate.cxx-backup │ │ │ │ ├── COxidationKineticDiffusionLimitedRate.hxx │ │ │ │ └── COxidationKineticDiffusionLimitedRateI.hxx │ │ │ │ └── COxidationMurphyShaddix │ │ │ │ ├── COxidationMurphyShaddix.cxx-backup │ │ │ │ ├── COxidationMurphyShaddix.hxx │ │ │ │ └── COxidationMurphyShaddixI.hxx │ │ ├── distributionModels │ │ │ ├── RosinRammler │ │ │ │ ├── RosinRammler.cxx │ │ │ │ └── RosinRammler.hxx │ │ │ ├── distributionModel │ │ │ │ ├── distributionModel.cxx │ │ │ │ ├── distributionModel.hxx │ │ │ │ └── distributionModelNew.cxx │ │ │ ├── exponential │ │ │ │ ├── exponential.cxx │ │ │ │ └── exponential.hxx │ │ │ ├── fixedValue │ │ │ │ ├── fixedValue.cxx │ │ │ │ └── fixedValue.hxx │ │ │ ├── general │ │ │ │ ├── general.cxx │ │ │ │ └── general.hxx │ │ │ ├── massRosinRammler │ │ │ │ ├── massRosinRammler.cxx │ │ │ │ └── massRosinRammler.hxx │ │ │ ├── multiNormal │ │ │ │ ├── multiNormal.cxx │ │ │ │ └── multiNormal.hxx │ │ │ ├── normal │ │ │ │ ├── normal.cxx │ │ │ │ └── normal.hxx │ │ │ └── uniform │ │ │ │ ├── uniform.cxx │ │ │ │ └── uniform.hxx │ │ ├── intermediate │ │ │ ├── clouds │ │ │ │ ├── Templates │ │ │ │ │ ├── CollidingCloud │ │ │ │ │ │ ├── CollidingCloud.cxx-backup │ │ │ │ │ │ ├── CollidingCloud.hxx │ │ │ │ │ │ ├── CollidingCloudI.hxx │ │ │ │ │ │ └── CollidingCloud_Imp.hxx │ │ │ │ │ ├── KinematicCloud │ │ │ │ │ │ ├── KinematicCloudTemplate.cxx-backup │ │ │ │ │ │ ├── KinematicCloudTemplate.hxx │ │ │ │ │ │ ├── KinematicCloudTemplateI.hxx │ │ │ │ │ │ ├── KinematicCloudTemplate_Imp.hxx │ │ │ │ │ │ └── cloudSolution │ │ │ │ │ │ │ ├── cloudSolution.cxx │ │ │ │ │ │ │ ├── cloudSolution.hxx │ │ │ │ │ │ │ └── cloudSolutionI.hxx │ │ │ │ │ ├── MPPICCloud │ │ │ │ │ │ ├── MPPICCloud.cxx-backup │ │ │ │ │ │ ├── MPPICCloud.hxx │ │ │ │ │ │ ├── MPPICCloudI.hxx │ │ │ │ │ │ └── MPPICCloud_Imp.hxx │ │ │ │ │ ├── ReactingCloud │ │ │ │ │ │ ├── ReactingCloudTemplate.cxx-backup │ │ │ │ │ │ ├── ReactingCloudTemplate.hxx │ │ │ │ │ │ ├── ReactingCloudTemplateI.hxx │ │ │ │ │ │ └── ReactingCloudTemplate_Imp.hxx │ │ │ │ │ ├── ReactingMultiphaseCloud │ │ │ │ │ │ ├── ReactingMultiphaseCloudTemplate.cxx-backup │ │ │ │ │ │ ├── ReactingMultiphaseCloudTemplate.hxx │ │ │ │ │ │ ├── ReactingMultiphaseCloudTemplateI.hxx │ │ │ │ │ │ └── ReactingMultiphaseCloudTemplate_Imp.hxx │ │ │ │ │ └── ThermoCloud │ │ │ │ │ │ ├── ThermoCloudTemplate.cxx-backup │ │ │ │ │ │ ├── ThermoCloudTemplate.hxx │ │ │ │ │ │ ├── ThermoCloudTemplateI.hxx │ │ │ │ │ │ └── ThermoCloudTemplate_Imp.hxx │ │ │ │ ├── baseClasses │ │ │ │ │ ├── kinematicCloud │ │ │ │ │ │ ├── kinematicCloud.cxx │ │ │ │ │ │ └── kinematicCloud.hxx │ │ │ │ │ ├── reactingCloud │ │ │ │ │ │ ├── reactingCloud.cxx │ │ │ │ │ │ └── reactingCloud.hxx │ │ │ │ │ ├── reactingMultiphaseCloud │ │ │ │ │ │ ├── reactingMultiphaseCloud.cxx │ │ │ │ │ │ └── reactingMultiphaseCloud.hxx │ │ │ │ │ └── thermoCloud │ │ │ │ │ │ ├── thermoCloud.cxx │ │ │ │ │ │ └── thermoCloud.hxx │ │ │ │ └── derived │ │ │ │ │ ├── basicKinematicCloud │ │ │ │ │ └── basicKinematicCloud.hxx │ │ │ │ │ ├── basicKinematicCollidingCloud │ │ │ │ │ └── basicKinematicCollidingCloud.hxx │ │ │ │ │ ├── basicKinematicMPPICCloud │ │ │ │ │ └── basicKinematicMPPICCloud.hxx │ │ │ │ │ ├── basicReactingCloud │ │ │ │ │ └── basicReactingCloud.hxx │ │ │ │ │ ├── basicReactingMultiphaseCloud │ │ │ │ │ └── basicReactingMultiphaseCloud.hxx │ │ │ │ │ └── basicThermoCloud │ │ │ │ │ └── basicThermoCloud.hxx │ │ │ ├── integrationScheme │ │ │ │ ├── Euler │ │ │ │ │ ├── Euler.cxx │ │ │ │ │ └── Euler.hxx │ │ │ │ ├── analytical │ │ │ │ │ ├── analytical.cxx │ │ │ │ │ └── analytical.hxx │ │ │ │ └── integrationScheme │ │ │ │ │ ├── integrationScheme.cxx │ │ │ │ │ ├── integrationScheme.hxx │ │ │ │ │ ├── integrationSchemeI.hxx │ │ │ │ │ ├── integrationSchemeNew.cxx │ │ │ │ │ └── integrationSchemeTemplates.cxx-backup │ │ │ ├── parcels │ │ │ │ ├── Templates │ │ │ │ │ ├── CollidingParcel │ │ │ │ │ │ ├── CollidingParcel.cxx │ │ │ │ │ │ ├── CollidingParcel.hxx │ │ │ │ │ │ ├── CollidingParcelI.hxx │ │ │ │ │ │ ├── CollidingParcelIO.cxx │ │ │ │ │ │ └── CollisionRecordList │ │ │ │ │ │ │ ├── CollisionRecordList.cxx │ │ │ │ │ │ │ ├── CollisionRecordList.hxx │ │ │ │ │ │ │ ├── CollisionRecordListI.hxx │ │ │ │ │ │ │ ├── PairCollisionRecord │ │ │ │ │ │ │ ├── PairCollisionRecord.cxx │ │ │ │ │ │ │ ├── PairCollisionRecord.hxx │ │ │ │ │ │ │ ├── PairCollisionRecordI.hxx │ │ │ │ │ │ │ └── PairCollisionRecordIO.cxx │ │ │ │ │ │ │ └── WallCollisionRecord │ │ │ │ │ │ │ ├── WallCollisionRecord.cxx │ │ │ │ │ │ │ ├── WallCollisionRecord.hxx │ │ │ │ │ │ │ ├── WallCollisionRecordI.hxx │ │ │ │ │ │ │ └── WallCollisionRecordIO.cxx │ │ │ │ │ ├── KinematicParcel │ │ │ │ │ │ ├── KinematicParcel.cxx │ │ │ │ │ │ ├── KinematicParcel.hxx │ │ │ │ │ │ ├── KinematicParcelI.hxx │ │ │ │ │ │ ├── KinematicParcelIO.cxx │ │ │ │ │ │ └── KinematicParcelTrackingDataI.hxx │ │ │ │ │ ├── MPPICParcel │ │ │ │ │ │ ├── MPPICParcel.cxx │ │ │ │ │ │ ├── MPPICParcel.hxx │ │ │ │ │ │ ├── MPPICParcelI.hxx │ │ │ │ │ │ ├── MPPICParcelIO.cxx │ │ │ │ │ │ └── MPPICParcelTrackingDataI.hxx │ │ │ │ │ ├── ReactingMultiphaseParcel │ │ │ │ │ │ ├── ReactingMultiphaseParcel.cxx │ │ │ │ │ │ ├── ReactingMultiphaseParcel.hxx │ │ │ │ │ │ ├── ReactingMultiphaseParcelI.hxx │ │ │ │ │ │ └── ReactingMultiphaseParcelIO.cxx │ │ │ │ │ ├── ReactingParcel │ │ │ │ │ │ ├── ReactingParcel.cxx │ │ │ │ │ │ ├── ReactingParcel.hxx │ │ │ │ │ │ ├── ReactingParcelI.hxx │ │ │ │ │ │ ├── ReactingParcelIO.cxx │ │ │ │ │ │ └── ReactingParcelTrackingDataI.hxx │ │ │ │ │ └── ThermoParcel │ │ │ │ │ │ ├── ThermoParcel.cxx │ │ │ │ │ │ ├── ThermoParcel.hxx │ │ │ │ │ │ ├── ThermoParcelI.hxx │ │ │ │ │ │ ├── ThermoParcelIO.cxx │ │ │ │ │ │ └── ThermoParcelTrackingDataI.hxx │ │ │ │ ├── derived │ │ │ │ │ ├── basicKinematicCollidingParcel │ │ │ │ │ │ ├── basicKinematicCollidingParcel.hxx │ │ │ │ │ │ ├── defineBasicKinematicCollidingParcel.cxx │ │ │ │ │ │ └── makeBasicKinematicCollidingParcelSubmodels.cxx │ │ │ │ │ ├── basicKinematicMPPICParcel │ │ │ │ │ │ ├── basicKinematicMPPICParcel.hxx │ │ │ │ │ │ ├── defineBasicKinematicMPPICParcel.cxx │ │ │ │ │ │ └── makeBasicKinematicMPPICParcelSubmodels.cxx │ │ │ │ │ ├── basicKinematicParcel │ │ │ │ │ │ ├── basicKinematicParcel.hxx │ │ │ │ │ │ ├── defineBasicKinematicParcel.cxx │ │ │ │ │ │ └── makeBasicKinematicParcelSubmodels.cxx │ │ │ │ │ ├── basicReactingMultiphaseParcel │ │ │ │ │ │ ├── basicReactingMultiphaseParcel.hxx │ │ │ │ │ │ ├── defineBasicReactingMultiphaseParcel.cxx │ │ │ │ │ │ └── makeBasicReactingMultiphaseParcelSubmodels.cxx │ │ │ │ │ ├── basicReactingParcel │ │ │ │ │ │ ├── basicReactingParcel.hxx │ │ │ │ │ │ ├── defineBasicReactingParcel.cxx │ │ │ │ │ │ └── makeBasicReactingParcelSubmodels.cxx │ │ │ │ │ └── basicThermoParcel │ │ │ │ │ │ ├── basicThermoParcel.hxx │ │ │ │ │ │ ├── defineBasicThermoParcel.cxx │ │ │ │ │ │ └── makeBasicThermoParcelSubmodels.cxx │ │ │ │ └── include │ │ │ │ │ ├── makeMPPICParcelDampingModels.hxx │ │ │ │ │ ├── makeMPPICParcelIsotropyModels.hxx │ │ │ │ │ ├── makeMPPICParcelPackingModels.hxx │ │ │ │ │ ├── makeParcelCloudFunctionObjects.hxx │ │ │ │ │ ├── makeParcelCollisionModels.hxx │ │ │ │ │ ├── makeParcelDispersionModels.hxx │ │ │ │ │ ├── makeParcelForces.hxx │ │ │ │ │ ├── makeParcelHeatTransferModels.hxx │ │ │ │ │ ├── makeParcelInjectionModels.hxx │ │ │ │ │ ├── makeParcelPatchInteractionModels.hxx │ │ │ │ │ ├── makeParcelStochasticCollisionModels.hxx │ │ │ │ │ ├── makeParcelSurfaceFilmModels.hxx │ │ │ │ │ ├── makeReactingMultiphaseParcelCompositionModels.hxx │ │ │ │ │ ├── makeReactingMultiphaseParcelDevolatilisationModels.hxx │ │ │ │ │ ├── makeReactingMultiphaseParcelInjectionModels.hxx │ │ │ │ │ ├── makeReactingMultiphaseParcelStochasticCollisionModels.hxx │ │ │ │ │ ├── makeReactingMultiphaseParcelSurfaceReactionModels.hxx │ │ │ │ │ ├── makeReactingParcelCompositionModels.hxx │ │ │ │ │ ├── makeReactingParcelInjectionModels.hxx │ │ │ │ │ ├── makeReactingParcelPhaseChangeModels.hxx │ │ │ │ │ ├── makeReactingParcelSurfaceFilmModels.hxx │ │ │ │ │ └── makeThermoParcelSurfaceFilmModels.hxx │ │ │ ├── phaseProperties │ │ │ │ ├── phaseProperties │ │ │ │ │ ├── phaseProperties.cxx │ │ │ │ │ ├── phaseProperties.hxx │ │ │ │ │ └── phasePropertiesIO.cxx │ │ │ │ └── phasePropertiesList │ │ │ │ │ ├── phasePropertiesList.cxx │ │ │ │ │ └── phasePropertiesList.hxx │ │ │ └── submodels │ │ │ │ ├── CloudFunctionObjects │ │ │ │ ├── CloudFunctionObject │ │ │ │ │ ├── CloudFunctionObject.cxx-backup │ │ │ │ │ ├── CloudFunctionObject.hxx │ │ │ │ │ ├── CloudFunctionObjectNew.cxx-backup │ │ │ │ │ ├── CloudFunctionObjectNew_Imp.hxx │ │ │ │ │ └── CloudFunctionObject_Imp.hxx │ │ │ │ ├── CloudFunctionObjectList │ │ │ │ │ ├── CloudFunctionObjectList.cxx-backup │ │ │ │ │ ├── CloudFunctionObjectList.hxx │ │ │ │ │ ├── CloudFunctionObjectListI.hxx │ │ │ │ │ └── CloudFunctionObjectList_Imp.hxx │ │ │ │ ├── FacePostProcessing │ │ │ │ │ ├── FacePostProcessing.cxx-backup │ │ │ │ │ ├── FacePostProcessing.hxx │ │ │ │ │ ├── FacePostProcessingI.hxx │ │ │ │ │ └── FacePostProcessing_Imp.hxx │ │ │ │ ├── ParticleCollector │ │ │ │ │ ├── ParticleCollector.cxx-backup │ │ │ │ │ ├── ParticleCollector.hxx │ │ │ │ │ ├── ParticleCollectorI.hxx │ │ │ │ │ └── ParticleCollector_Imp.hxx │ │ │ │ ├── ParticleErosion │ │ │ │ │ ├── ParticleErosion.cxx-backup │ │ │ │ │ ├── ParticleErosion.hxx │ │ │ │ │ └── ParticleErosionI.hxx │ │ │ │ ├── ParticleTracks │ │ │ │ │ ├── ParticleTracks.cxx-backup │ │ │ │ │ ├── ParticleTracks.hxx │ │ │ │ │ ├── ParticleTracksI.hxx │ │ │ │ │ └── ParticleTracks_Imp.hxx │ │ │ │ ├── ParticleTrap │ │ │ │ │ ├── ParticleTrap.cxx-backup │ │ │ │ │ ├── ParticleTrap.hxx │ │ │ │ │ └── ParticleTrapI.hxx │ │ │ │ ├── PatchCollisionDensity │ │ │ │ │ ├── PatchCollisionDensity.cxx-backup │ │ │ │ │ ├── PatchCollisionDensity.hxx │ │ │ │ │ └── PatchCollisionDensityI.hxx │ │ │ │ ├── PatchPostProcessing │ │ │ │ │ ├── PatchPostProcessing.cxx-backup │ │ │ │ │ ├── PatchPostProcessing.hxx │ │ │ │ │ ├── PatchPostProcessingI.hxx │ │ │ │ │ └── PatchPostProcessing_Imp.hxx │ │ │ │ ├── RelativeVelocity │ │ │ │ │ ├── RelativeVelocity.cxx-backup │ │ │ │ │ ├── RelativeVelocity.hxx │ │ │ │ │ └── RelativeVelocityI.hxx │ │ │ │ └── VoidFraction │ │ │ │ │ ├── VoidFraction.cxx-backup │ │ │ │ │ ├── VoidFraction.hxx │ │ │ │ │ └── VoidFractionI.hxx │ │ │ │ ├── CloudSubModelBase.cxx-backup │ │ │ │ ├── CloudSubModelBase.hxx │ │ │ │ ├── CloudSubModelBaseI.hxx │ │ │ │ ├── ForceTypes │ │ │ │ └── ParticleForceList │ │ │ │ │ ├── ParticleForceList.cxx-backup │ │ │ │ │ ├── ParticleForceList.hxx │ │ │ │ │ ├── ParticleForceListI.hxx │ │ │ │ │ └── ParticleForceList_Imp.hxx │ │ │ │ ├── Kinematic │ │ │ │ ├── CollisionModel │ │ │ │ │ ├── CollisionModel │ │ │ │ │ │ ├── CollisionModel.cxx-backup │ │ │ │ │ │ ├── CollisionModel.hxx │ │ │ │ │ │ ├── CollisionModelI.hxx │ │ │ │ │ │ ├── CollisionModelNew.cxx-backup │ │ │ │ │ │ └── CollisionModelNew_Imp.hxx │ │ │ │ │ ├── NoCollision │ │ │ │ │ │ ├── NoCollision.cxx-backup │ │ │ │ │ │ ├── NoCollision.hxx │ │ │ │ │ │ └── NoCollisionI.hxx │ │ │ │ │ └── PairCollision │ │ │ │ │ │ ├── PairCollision.cxx-backup │ │ │ │ │ │ ├── PairCollision.hxx │ │ │ │ │ │ ├── PairCollisionI.hxx │ │ │ │ │ │ ├── PairModel │ │ │ │ │ │ ├── PairModel │ │ │ │ │ │ │ ├── PairModel.cxx-backup │ │ │ │ │ │ │ ├── PairModel.hxx │ │ │ │ │ │ │ ├── PairModelI.hxx │ │ │ │ │ │ │ ├── PairModelNew.cxx-backup │ │ │ │ │ │ │ └── PairModelNew_Imp.hxx │ │ │ │ │ │ └── PairSpringSliderDashpot │ │ │ │ │ │ │ ├── PairSpringSliderDashpot.cxx-backup │ │ │ │ │ │ │ ├── PairSpringSliderDashpot.hxx │ │ │ │ │ │ │ └── PairSpringSliderDashpotI.hxx │ │ │ │ │ │ ├── WallModel │ │ │ │ │ │ ├── WallLocalSpringSliderDashpot │ │ │ │ │ │ │ ├── WallLocalSpringSliderDashpot.cxx-backup │ │ │ │ │ │ │ ├── WallLocalSpringSliderDashpot.hxx │ │ │ │ │ │ │ └── WallLocalSpringSliderDashpotI.hxx │ │ │ │ │ │ ├── WallModel │ │ │ │ │ │ │ ├── WallModel.cxx-backup │ │ │ │ │ │ │ ├── WallModel.hxx │ │ │ │ │ │ │ ├── WallModelI.hxx │ │ │ │ │ │ │ ├── WallModelNew.cxx-backup │ │ │ │ │ │ │ └── WallModelNew_Imp.hxx │ │ │ │ │ │ └── WallSpringSliderDashpot │ │ │ │ │ │ │ ├── WallSpringSliderDashpot.cxx-backup │ │ │ │ │ │ │ ├── WallSpringSliderDashpot.hxx │ │ │ │ │ │ │ └── WallSpringSliderDashpotI.hxx │ │ │ │ │ │ └── WallSiteData │ │ │ │ │ │ ├── WallSiteData.cxx-backup │ │ │ │ │ │ ├── WallSiteData.hxx │ │ │ │ │ │ ├── WallSiteDataI.hxx │ │ │ │ │ │ └── WallSiteData_Imp.hxx │ │ │ │ ├── DispersionModel │ │ │ │ │ ├── DispersionModel │ │ │ │ │ │ ├── DispersionModel.cxx-backup │ │ │ │ │ │ ├── DispersionModel.hxx │ │ │ │ │ │ ├── DispersionModelI.hxx │ │ │ │ │ │ ├── DispersionModelNew.cxx-backup │ │ │ │ │ │ └── DispersionModelNew_Imp.hxx │ │ │ │ │ └── NoDispersion │ │ │ │ │ │ ├── NoDispersion.cxx-backup │ │ │ │ │ │ ├── NoDispersion.hxx │ │ │ │ │ │ └── NoDispersionI.hxx │ │ │ │ ├── InjectionModel │ │ │ │ │ ├── CellZoneInjection │ │ │ │ │ │ ├── CellZoneInjection.cxx-backup │ │ │ │ │ │ ├── CellZoneInjection.hxx │ │ │ │ │ │ └── CellZoneInjectionI.hxx │ │ │ │ │ ├── ConeInjection │ │ │ │ │ │ ├── ConeInjection.cxx-backup │ │ │ │ │ │ ├── ConeInjection.hxx │ │ │ │ │ │ └── ConeInjectionI.hxx │ │ │ │ │ ├── FieldActivatedInjection │ │ │ │ │ │ ├── FieldActivatedInjection.cxx-backup │ │ │ │ │ │ ├── FieldActivatedInjection.hxx │ │ │ │ │ │ └── FieldActivatedInjectionI.hxx │ │ │ │ │ ├── InflationInjection │ │ │ │ │ │ ├── InflationInjection.cxx-backup │ │ │ │ │ │ ├── InflationInjection.hxx │ │ │ │ │ │ └── InflationInjectionI.hxx │ │ │ │ │ ├── InjectionModel │ │ │ │ │ │ ├── InjectionModelNew.cxx-backup │ │ │ │ │ │ ├── InjectionModelTemplate.cxx-backup │ │ │ │ │ │ ├── InjectionModelTemplate.hxx │ │ │ │ │ │ ├── InjectionModelTemplateI.hxx │ │ │ │ │ │ ├── InjectionModelTemplateList.cxx │ │ │ │ │ │ ├── InjectionModelTemplateList.hxx │ │ │ │ │ │ ├── InjectionModelTemplateListI.hxx │ │ │ │ │ │ ├── InjectionModelTemplateNew_Imp.hxx │ │ │ │ │ │ └── InjectionModelTemplate_Imp.hxx │ │ │ │ │ ├── KinematicLookupTableInjection │ │ │ │ │ │ ├── KinematicLookupTableInjection.cxx-backup │ │ │ │ │ │ ├── KinematicLookupTableInjection.hxx │ │ │ │ │ │ ├── KinematicLookupTableInjectionI.hxx │ │ │ │ │ │ ├── kinematicParcelInjectionData.cxx │ │ │ │ │ │ ├── kinematicParcelInjectionData.hxx │ │ │ │ │ │ ├── kinematicParcelInjectionDataI.hxx │ │ │ │ │ │ ├── kinematicParcelInjectionDataIO.cxx │ │ │ │ │ │ ├── kinematicParcelInjectionDataIOList.cxx │ │ │ │ │ │ └── kinematicParcelInjectionDataIOList.hxx │ │ │ │ │ ├── ManualInjection │ │ │ │ │ │ ├── ManualInjection.cxx-backup │ │ │ │ │ │ ├── ManualInjection.hxx │ │ │ │ │ │ └── ManualInjectionI.hxx │ │ │ │ │ ├── NoInjection │ │ │ │ │ │ ├── NoInjection.cxx-backup │ │ │ │ │ │ ├── NoInjection.hxx │ │ │ │ │ │ └── NoInjectionI.hxx │ │ │ │ │ ├── PatchFlowRateInjection │ │ │ │ │ │ ├── PatchFlowRateInjection.cxx-backup │ │ │ │ │ │ ├── PatchFlowRateInjection.hxx │ │ │ │ │ │ └── PatchFlowRateInjectionI.hxx │ │ │ │ │ └── PatchInjection │ │ │ │ │ │ ├── PatchInjectionTemplate.cxx-backup │ │ │ │ │ │ ├── PatchInjectionTemplate.hxx │ │ │ │ │ │ ├── PatchInjectionTemplateI.hxx │ │ │ │ │ │ ├── patchInjectionBase.cxx │ │ │ │ │ │ └── patchInjectionBase.hxx │ │ │ │ ├── ParticleForces │ │ │ │ │ ├── Drag │ │ │ │ │ │ ├── DenseDrag │ │ │ │ │ │ │ ├── DenseDragForce.cxx-backup │ │ │ │ │ │ │ ├── DenseDragForce.hxx │ │ │ │ │ │ │ └── DenseDragForceI.hxx │ │ │ │ │ │ ├── DistortedSphereDrag │ │ │ │ │ │ │ ├── DistortedSphereDragForce.cxx-backup │ │ │ │ │ │ │ ├── DistortedSphereDragForce.hxx │ │ │ │ │ │ │ └── DistortedSphereDragForceI.hxx │ │ │ │ │ │ ├── ErgunWenYuDrag │ │ │ │ │ │ │ ├── ErgunWenYuDragForce.cxx-backup │ │ │ │ │ │ │ ├── ErgunWenYuDragForce.hxx │ │ │ │ │ │ │ └── ErgunWenYuDragForceI.hxx │ │ │ │ │ │ ├── NonSphereDrag │ │ │ │ │ │ │ ├── NonSphereDragForce.cxx-backup │ │ │ │ │ │ │ ├── NonSphereDragForce.hxx │ │ │ │ │ │ │ └── NonSphereDragForceI.hxx │ │ │ │ │ │ ├── PlessisMasliyahDrag │ │ │ │ │ │ │ ├── PlessisMasliyahDragForce.cxx-backup │ │ │ │ │ │ │ ├── PlessisMasliyahDragForce.hxx │ │ │ │ │ │ │ └── PlessisMasliyahDragForceI.hxx │ │ │ │ │ │ ├── SchillerNaumannDrag │ │ │ │ │ │ │ ├── SchillerNaumannDragForce.cxx-backup │ │ │ │ │ │ │ ├── SchillerNaumannDragForce.hxx │ │ │ │ │ │ │ └── SchillerNaumannDragForceI.hxx │ │ │ │ │ │ ├── SphereDrag │ │ │ │ │ │ │ ├── SphereDragForce.cxx-backup │ │ │ │ │ │ │ ├── SphereDragForce.hxx │ │ │ │ │ │ │ └── SphereDragForceI.hxx │ │ │ │ │ │ └── WenYuDrag │ │ │ │ │ │ │ ├── WenYuDragForce.cxx-backup │ │ │ │ │ │ │ ├── WenYuDragForce.hxx │ │ │ │ │ │ │ └── WenYuDragForceI.hxx │ │ │ │ │ ├── Gravity │ │ │ │ │ │ ├── GravityForce.cxx-backup │ │ │ │ │ │ ├── GravityForce.hxx │ │ │ │ │ │ ├── GravityForceI.hxx │ │ │ │ │ │ └── GravityForce_Imp.hxx │ │ │ │ │ ├── Lift │ │ │ │ │ │ ├── LiftForce │ │ │ │ │ │ │ ├── LiftForce.cxx-backup │ │ │ │ │ │ │ ├── LiftForce.hxx │ │ │ │ │ │ │ ├── LiftForceI.hxx │ │ │ │ │ │ │ └── LiftForce_Imp.hxx │ │ │ │ │ │ ├── SaffmanMeiLift │ │ │ │ │ │ │ ├── SaffmanMeiLiftForce.cxx-backup │ │ │ │ │ │ │ ├── SaffmanMeiLiftForce.hxx │ │ │ │ │ │ │ └── SaffmanMeiLiftForceI.hxx │ │ │ │ │ │ └── TomiyamaLift │ │ │ │ │ │ │ ├── TomiyamaLiftForce.cxx-backup │ │ │ │ │ │ │ ├── TomiyamaLiftForce.hxx │ │ │ │ │ │ │ └── TomiyamaLiftForceI.hxx │ │ │ │ │ ├── NonInertialFrame │ │ │ │ │ │ ├── NonInertialFrameForce.cxx-backup │ │ │ │ │ │ ├── NonInertialFrameForce.hxx │ │ │ │ │ │ ├── NonInertialFrameForceI.hxx │ │ │ │ │ │ └── NonInertialFrameForce_Imp.hxx │ │ │ │ │ ├── Paramagnetic │ │ │ │ │ │ ├── ParamagneticForce.cxx-backup │ │ │ │ │ │ ├── ParamagneticForce.hxx │ │ │ │ │ │ ├── ParamagneticForceI.hxx │ │ │ │ │ │ └── ParamagneticForce_Imp.hxx │ │ │ │ │ ├── ParticleForce │ │ │ │ │ │ ├── ParticleForce.cxx-backup │ │ │ │ │ │ ├── ParticleForce.hxx │ │ │ │ │ │ ├── ParticleForceI.hxx │ │ │ │ │ │ ├── ParticleForceNew.cxx-backup │ │ │ │ │ │ ├── ParticleForceNew_Imp.hxx │ │ │ │ │ │ └── ParticleForce_Imp.hxx │ │ │ │ │ ├── PressureGradient │ │ │ │ │ │ ├── PressureGradientForce.cxx-backup │ │ │ │ │ │ ├── PressureGradientForce.hxx │ │ │ │ │ │ ├── PressureGradientForceI.hxx │ │ │ │ │ │ └── PressureGradientForce_Imp.hxx │ │ │ │ │ ├── SRF │ │ │ │ │ │ ├── SRFForce.cxx-backup │ │ │ │ │ │ ├── SRFForce.hxx │ │ │ │ │ │ └── SRFForceI.hxx │ │ │ │ │ ├── Scaled │ │ │ │ │ │ ├── ScaledForce.cxx-backup │ │ │ │ │ │ ├── ScaledForce.hxx │ │ │ │ │ │ └── ScaledForceI.hxx │ │ │ │ │ ├── VirtualMass │ │ │ │ │ │ ├── VirtualMassForce.cxx-backup │ │ │ │ │ │ ├── VirtualMassForce.hxx │ │ │ │ │ │ └── VirtualMassForceI.hxx │ │ │ │ │ └── forceSuSp │ │ │ │ │ │ ├── forceSuSp.cxx │ │ │ │ │ │ ├── forceSuSp.hxx │ │ │ │ │ │ └── forceSuSpI.hxx │ │ │ │ ├── PatchInteractionModel │ │ │ │ │ ├── LocalInteraction │ │ │ │ │ │ ├── LocalInteraction.cxx-backup │ │ │ │ │ │ ├── LocalInteraction.hxx │ │ │ │ │ │ ├── LocalInteractionI.hxx │ │ │ │ │ │ ├── patchInteractionData.cxx │ │ │ │ │ │ ├── patchInteractionData.hxx │ │ │ │ │ │ ├── patchInteractionDataList.cxx │ │ │ │ │ │ └── patchInteractionDataList.hxx │ │ │ │ │ ├── NoInteraction │ │ │ │ │ │ ├── NoInteractionTemplate.cxx-backup │ │ │ │ │ │ ├── NoInteractionTemplate.hxx │ │ │ │ │ │ └── NoInteractionTemplateI.hxx │ │ │ │ │ ├── PatchInteractionModel │ │ │ │ │ │ ├── PatchInteractionModel.cxx-backup │ │ │ │ │ │ ├── PatchInteractionModel.hxx │ │ │ │ │ │ ├── PatchInteractionModelI.hxx │ │ │ │ │ │ ├── PatchInteractionModelNew.cxx-backup │ │ │ │ │ │ └── PatchInteractionModelNew_Imp.hxx │ │ │ │ │ ├── Rebound │ │ │ │ │ │ ├── Rebound.cxx-backup │ │ │ │ │ │ ├── Rebound.hxx │ │ │ │ │ │ └── ReboundI.hxx │ │ │ │ │ └── StandardWallInteraction │ │ │ │ │ │ ├── StandardWallInteraction.cxx-backup │ │ │ │ │ │ ├── StandardWallInteraction.hxx │ │ │ │ │ │ └── StandardWallInteractionI.hxx │ │ │ │ ├── StochasticCollision │ │ │ │ │ ├── NoStochasticCollision │ │ │ │ │ │ ├── NoStochasticCollision.cxx-backup │ │ │ │ │ │ ├── NoStochasticCollision.hxx │ │ │ │ │ │ └── NoStochasticCollisionI.hxx │ │ │ │ │ └── StochasticCollisionModel │ │ │ │ │ │ ├── StochasticCollisionModel.cxx-backup │ │ │ │ │ │ ├── StochasticCollisionModel.hxx │ │ │ │ │ │ ├── StochasticCollisionModelI.hxx │ │ │ │ │ │ ├── StochasticCollisionModelNew.cxx-backup │ │ │ │ │ │ └── StochasticCollisionModelNew_Imp.hxx │ │ │ │ └── SurfaceFilmModel │ │ │ │ │ ├── NoSurfaceFilm │ │ │ │ │ ├── NoSurfaceFilm.cxx-backup │ │ │ │ │ ├── NoSurfaceFilm.hxx │ │ │ │ │ └── NoSurfaceFilmI.hxx │ │ │ │ │ └── SurfaceFilmModel │ │ │ │ │ ├── SurfaceFilmModelTemplate.cxx-backup │ │ │ │ │ ├── SurfaceFilmModelTemplate.hxx │ │ │ │ │ ├── SurfaceFilmModelTemplateI.hxx │ │ │ │ │ ├── SurfaceFilmModelTemplateNew.cxx-backup │ │ │ │ │ ├── SurfaceFilmModelTemplateNew_Imp.hxx │ │ │ │ │ └── SurfaceFilmModelTemplate_Imp.hxx │ │ │ │ ├── MPPIC │ │ │ │ ├── AveragingMethods │ │ │ │ │ ├── AveragingMethod │ │ │ │ │ │ ├── AveragingMethod.cxx-backup │ │ │ │ │ │ ├── AveragingMethod.hxx │ │ │ │ │ │ ├── AveragingMethodI.hxx │ │ │ │ │ │ └── AveragingMethod_Imp.hxx │ │ │ │ │ ├── Basic │ │ │ │ │ │ ├── Basic.cxx-backup │ │ │ │ │ │ ├── Basic.hxx │ │ │ │ │ │ └── BasicI.hxx │ │ │ │ │ ├── Dual │ │ │ │ │ │ ├── Dual.cxx-backup │ │ │ │ │ │ ├── Dual.hxx │ │ │ │ │ │ └── DualI.hxx │ │ │ │ │ ├── Moment │ │ │ │ │ │ ├── Moment.cxx-backup │ │ │ │ │ │ ├── Moment.hxx │ │ │ │ │ │ └── MomentI.hxx │ │ │ │ │ └── makeAveragingMethods.cxx │ │ │ │ ├── CorrectionLimitingMethods │ │ │ │ │ ├── CorrectionLimitingMethod │ │ │ │ │ │ ├── CorrectionLimitingMethod.cxx │ │ │ │ │ │ └── CorrectionLimitingMethod.hxx │ │ │ │ │ ├── absolute │ │ │ │ │ │ ├── absolute.cxx │ │ │ │ │ │ └── absolute.hxx │ │ │ │ │ ├── noCorrectionLimiting │ │ │ │ │ │ ├── noCorrectionLimiting.cxx │ │ │ │ │ │ └── noCorrectionLimiting.hxx │ │ │ │ │ └── relative │ │ │ │ │ │ ├── relative.cxx │ │ │ │ │ │ └── relative.hxx │ │ │ │ ├── DampingModels │ │ │ │ │ ├── DampingModel │ │ │ │ │ │ ├── DampingModel.cxx-backup │ │ │ │ │ │ ├── DampingModel.hxx │ │ │ │ │ │ └── DampingModelI.hxx │ │ │ │ │ ├── NoDamping │ │ │ │ │ │ ├── NoDamping.cxx-backup │ │ │ │ │ │ ├── NoDamping.hxx │ │ │ │ │ │ └── NoDampingI.hxx │ │ │ │ │ └── Relaxation │ │ │ │ │ │ ├── Relaxation.cxx-backup │ │ │ │ │ │ ├── Relaxation.hxx │ │ │ │ │ │ └── RelaxationI.hxx │ │ │ │ ├── IsotropyModels │ │ │ │ │ ├── IsotropyModel │ │ │ │ │ │ ├── IsotropyModel.cxx-backup │ │ │ │ │ │ ├── IsotropyModel.hxx │ │ │ │ │ │ └── IsotropyModelI.hxx │ │ │ │ │ ├── NoIsotropy │ │ │ │ │ │ ├── NoIsotropy.cxx-backup │ │ │ │ │ │ ├── NoIsotropy.hxx │ │ │ │ │ │ └── NoIsotropyI.hxx │ │ │ │ │ └── Stochastic │ │ │ │ │ │ ├── Stochastic.cxx-backup │ │ │ │ │ │ ├── Stochastic.hxx │ │ │ │ │ │ └── StochasticI.hxx │ │ │ │ ├── PackingModels │ │ │ │ │ ├── Explicit │ │ │ │ │ │ ├── Explicit.cxx-backup │ │ │ │ │ │ ├── Explicit.hxx │ │ │ │ │ │ └── ExplicitI.hxx │ │ │ │ │ ├── Implicit │ │ │ │ │ │ ├── Implicit.cxx-backup │ │ │ │ │ │ ├── Implicit.hxx │ │ │ │ │ │ └── ImplicitI.hxx │ │ │ │ │ ├── NoPacking │ │ │ │ │ │ ├── NoPacking.cxx-backup │ │ │ │ │ │ ├── NoPacking.hxx │ │ │ │ │ │ └── NoPackingI.hxx │ │ │ │ │ └── PackingModel │ │ │ │ │ │ ├── PackingModel.cxx-backup │ │ │ │ │ │ ├── PackingModel.hxx │ │ │ │ │ │ └── PackingModelI.hxx │ │ │ │ ├── ParticleStressModels │ │ │ │ │ ├── HarrisCrighton │ │ │ │ │ │ ├── HarrisCrighton.cxx │ │ │ │ │ │ └── HarrisCrighton.hxx │ │ │ │ │ ├── Lun │ │ │ │ │ │ ├── Lun.cxx │ │ │ │ │ │ └── Lun.hxx │ │ │ │ │ ├── ParticleStressModel │ │ │ │ │ │ ├── ParticleStressModel.cxx │ │ │ │ │ │ └── ParticleStressModel.hxx │ │ │ │ │ └── exponential │ │ │ │ │ │ ├── exponentialParticleStressModel.cxx │ │ │ │ │ │ └── exponentialParticleStressModel.hxx │ │ │ │ └── TimeScaleModels │ │ │ │ │ ├── TimeScaleModel │ │ │ │ │ ├── TimeScaleModel.cxx │ │ │ │ │ └── TimeScaleModel.hxx │ │ │ │ │ ├── equilibrium │ │ │ │ │ ├── equilibrium.cxx │ │ │ │ │ └── equilibrium.hxx │ │ │ │ │ ├── isotropic │ │ │ │ │ ├── isotropic.cxx │ │ │ │ │ └── isotropic.hxx │ │ │ │ │ └── nonEquilibrium │ │ │ │ │ ├── nonEquilibrium.cxx │ │ │ │ │ └── nonEquilibrium.hxx │ │ │ │ ├── Reacting │ │ │ │ ├── CompositionModel │ │ │ │ │ ├── CompositionModel │ │ │ │ │ │ ├── CompositionModel.cxx-backup │ │ │ │ │ │ ├── CompositionModel.hxx │ │ │ │ │ │ ├── CompositionModelI.hxx │ │ │ │ │ │ ├── CompositionModelNew.cxx-backup │ │ │ │ │ │ └── CompositionModelNew_Imp.hxx │ │ │ │ │ ├── NoComposition │ │ │ │ │ │ ├── NoComposition.cxx-backup │ │ │ │ │ │ ├── NoComposition.hxx │ │ │ │ │ │ └── NoCompositionI.hxx │ │ │ │ │ ├── SingleMixtureFraction │ │ │ │ │ │ ├── SingleMixtureFraction.cxx-backup │ │ │ │ │ │ ├── SingleMixtureFraction.hxx │ │ │ │ │ │ └── SingleMixtureFractionI.hxx │ │ │ │ │ └── SinglePhaseMixture │ │ │ │ │ │ ├── SinglePhaseMixture.cxx-backup │ │ │ │ │ │ ├── SinglePhaseMixture.hxx │ │ │ │ │ │ └── SinglePhaseMixtureI.hxx │ │ │ │ ├── InjectionModel │ │ │ │ │ └── ReactingLookupTableInjection │ │ │ │ │ │ ├── ReactingLookupTableInjection.cxx-backup │ │ │ │ │ │ ├── ReactingLookupTableInjection.hxx │ │ │ │ │ │ ├── ReactingLookupTableInjectionI.hxx │ │ │ │ │ │ ├── reactingParcelInjectionData.cxx │ │ │ │ │ │ ├── reactingParcelInjectionData.hxx │ │ │ │ │ │ ├── reactingParcelInjectionDataI.hxx │ │ │ │ │ │ ├── reactingParcelInjectionDataIO.cxx │ │ │ │ │ │ ├── reactingParcelInjectionDataIOList.cxx │ │ │ │ │ │ └── reactingParcelInjectionDataIOList.hxx │ │ │ │ └── PhaseChangeModel │ │ │ │ │ ├── LiquidEvaporation │ │ │ │ │ ├── LiquidEvaporation.cxx-backup │ │ │ │ │ ├── LiquidEvaporation.hxx │ │ │ │ │ └── LiquidEvaporationI.hxx │ │ │ │ │ ├── LiquidEvaporationBoil │ │ │ │ │ ├── LiquidEvaporationBoil.cxx-backup │ │ │ │ │ ├── LiquidEvaporationBoil.hxx │ │ │ │ │ └── LiquidEvaporationBoilI.hxx │ │ │ │ │ ├── NoPhaseChange │ │ │ │ │ ├── NoPhaseChangeTemplate.cxx-backup │ │ │ │ │ ├── NoPhaseChangeTemplate.hxx │ │ │ │ │ └── NoPhaseChangeTemplateI.hxx │ │ │ │ │ └── PhaseChangeModel │ │ │ │ │ ├── PhaseChangeModelTemplate.cxx-backup │ │ │ │ │ ├── PhaseChangeModelTemplate.hxx │ │ │ │ │ ├── PhaseChangeModelTemplateI.hxx │ │ │ │ │ ├── PhaseChangeModelTemplateNew.cxx-backup │ │ │ │ │ └── PhaseChangeModelTemplateNew_Imp.hxx │ │ │ │ ├── ReactingMultiphase │ │ │ │ ├── DevolatilisationModel │ │ │ │ │ ├── ConstantRateDevolatilisation │ │ │ │ │ │ ├── ConstantRateDevolatilisation.cxx-backup │ │ │ │ │ │ ├── ConstantRateDevolatilisation.hxx │ │ │ │ │ │ └── ConstantRateDevolatilisationI.hxx │ │ │ │ │ ├── DevolatilisationModel │ │ │ │ │ │ ├── DevolatilisationModel.cxx-backup │ │ │ │ │ │ ├── DevolatilisationModel.hxx │ │ │ │ │ │ ├── DevolatilisationModelI.hxx │ │ │ │ │ │ ├── DevolatilisationModelNew.cxx-backup │ │ │ │ │ │ └── DevolatilisationModelNew_Imp.hxx │ │ │ │ │ ├── NoDevolatilisation │ │ │ │ │ │ ├── NoDevolatilisation.cxx-backup │ │ │ │ │ │ ├── NoDevolatilisation.hxx │ │ │ │ │ │ └── NoDevolatilisationI.hxx │ │ │ │ │ └── SingleKineticRateDevolatilisation │ │ │ │ │ │ ├── SingleKineticRateDevolatilisation.cxx-backup │ │ │ │ │ │ ├── SingleKineticRateDevolatilisation.hxx │ │ │ │ │ │ └── SingleKineticRateDevolatilisationI.hxx │ │ │ │ ├── InjectionModel │ │ │ │ │ └── ReactingMultiphaseLookupTableInjection │ │ │ │ │ │ ├── ReactingMultiphaseLookupTableInjection.cxx-backup │ │ │ │ │ │ ├── ReactingMultiphaseLookupTableInjection.hxx │ │ │ │ │ │ ├── ReactingMultiphaseLookupTableInjectionI.hxx │ │ │ │ │ │ ├── reactingMultiphaseParcelInjectionData.cxx │ │ │ │ │ │ ├── reactingMultiphaseParcelInjectionData.hxx │ │ │ │ │ │ ├── reactingMultiphaseParcelInjectionDataI.hxx │ │ │ │ │ │ ├── reactingMultiphaseParcelInjectionDataIO.cxx │ │ │ │ │ │ ├── reactingMultiphaseParcelInjectionDataIOList.cxx │ │ │ │ │ │ └── reactingMultiphaseParcelInjectionDataIOList.hxx │ │ │ │ ├── StochasticCollision │ │ │ │ │ └── SuppressionCollision │ │ │ │ │ │ ├── SuppressionCollision.cxx-backup │ │ │ │ │ │ ├── SuppressionCollision.hxx │ │ │ │ │ │ └── SuppressionCollisionI.hxx │ │ │ │ └── SurfaceReactionModel │ │ │ │ │ ├── NoSurfaceReaction │ │ │ │ │ ├── NoSurfaceReaction.cxx-backup │ │ │ │ │ ├── NoSurfaceReaction.hxx │ │ │ │ │ └── NoSurfaceReactionI.hxx │ │ │ │ │ └── SurfaceReactionModel │ │ │ │ │ ├── SurfaceReactionModel.cxx-backup │ │ │ │ │ ├── SurfaceReactionModel.hxx │ │ │ │ │ ├── SurfaceReactionModelI.hxx │ │ │ │ │ ├── SurfaceReactionModelNew.cxx-backup │ │ │ │ │ └── SurfaceReactionModelNew_Imp.hxx │ │ │ │ ├── Thermodynamic │ │ │ │ ├── HeatTransferModel │ │ │ │ │ ├── HeatTransferModel │ │ │ │ │ │ ├── HeatTransferModelTemplate.cxx-backup │ │ │ │ │ │ ├── HeatTransferModelTemplate.hxx │ │ │ │ │ │ ├── HeatTransferModelTemplateI.hxx │ │ │ │ │ │ ├── HeatTransferModelTemplateNew.cxx-backup │ │ │ │ │ │ └── HeatTransferModelTemplateNew_Imp.hxx │ │ │ │ │ ├── NoHeatTransfer │ │ │ │ │ │ ├── NoHeatTransfer.cxx-backup │ │ │ │ │ │ ├── NoHeatTransfer.hxx │ │ │ │ │ │ └── NoHeatTransferI.hxx │ │ │ │ │ └── RanzMarshall │ │ │ │ │ │ ├── RanzMarshall.cxx-backup │ │ │ │ │ │ ├── RanzMarshall.hxx │ │ │ │ │ │ └── RanzMarshallI.hxx │ │ │ │ ├── InjectionModel │ │ │ │ │ └── ThermoLookupTableInjection │ │ │ │ │ │ ├── ThermoLookupTableInjection.cxx-backup │ │ │ │ │ │ ├── ThermoLookupTableInjection.hxx │ │ │ │ │ │ ├── ThermoLookupTableInjectionI.hxx │ │ │ │ │ │ ├── thermoParcelInjectionData.cxx │ │ │ │ │ │ ├── thermoParcelInjectionData.hxx │ │ │ │ │ │ ├── thermoParcelInjectionDataI.hxx │ │ │ │ │ │ ├── thermoParcelInjectionDataIO.cxx │ │ │ │ │ │ ├── thermoParcelInjectionDataIOList.cxx │ │ │ │ │ │ └── thermoParcelInjectionDataIOList.hxx │ │ │ │ └── SurfaceFilmModel │ │ │ │ │ └── ThermoSurfaceFilm │ │ │ │ │ ├── ThermoSurfaceFilm.cxx-backup │ │ │ │ │ ├── ThermoSurfaceFilm.hxx │ │ │ │ │ └── ThermoSurfaceFilmI.hxx │ │ │ │ └── addOns │ │ │ │ └── radiation │ │ │ │ ├── absorptionEmission │ │ │ │ └── cloudAbsorptionEmission │ │ │ │ │ ├── cloudAbsorptionEmission.cxx │ │ │ │ │ └── cloudAbsorptionEmission.hxx │ │ │ │ └── scatter │ │ │ │ └── cloudScatter │ │ │ │ ├── cloudScatter.cxx │ │ │ │ └── cloudScatter.hxx │ │ ├── module │ │ │ └── Lagrangian_Module.hxx │ │ ├── molecularDynamics │ │ │ ├── Allwmake │ │ │ ├── molecularMeasurements │ │ │ │ ├── bufferedAccumulator │ │ │ │ │ ├── bufferedAccumulator.cxx-backup │ │ │ │ │ ├── bufferedAccumulator.hxx │ │ │ │ │ ├── bufferedAccumulatorI.hxx │ │ │ │ │ ├── bufferedAccumulatorIO.cxx-backup │ │ │ │ │ ├── bufferedAccumulatorIO_Imp.hxx │ │ │ │ │ └── bufferedAccumulator_Imp.hxx │ │ │ │ ├── correlationFunction │ │ │ │ │ ├── correlationFunction.cxx-backup │ │ │ │ │ ├── correlationFunction.hxx │ │ │ │ │ ├── correlationFunctionI.hxx │ │ │ │ │ ├── correlationFunctionIO.cxx-backup │ │ │ │ │ ├── correlationFunctionIO_Imp.hxx │ │ │ │ │ └── correlationFunction_Imp.hxx │ │ │ │ └── distribution │ │ │ │ │ ├── distribution.cxx │ │ │ │ │ ├── distribution.hxx │ │ │ │ │ └── distributionI.hxx │ │ │ ├── molecule │ │ │ │ ├── mdTools │ │ │ │ │ ├── averageMDFields.lxx │ │ │ │ │ ├── calculateAutoCorrelationFunctions.lxx │ │ │ │ │ ├── calculateMDFields.lxx │ │ │ │ │ ├── calculateTransportProperties.lxx │ │ │ │ │ ├── createAutoCorrelationFunctions.lxx │ │ │ │ │ ├── createMDFields.lxx │ │ │ │ │ ├── createRefUnits.lxx │ │ │ │ │ ├── md.hxx │ │ │ │ │ ├── meanMomentumEnergyAndNMols.lxx │ │ │ │ │ ├── resetMDFields.lxx │ │ │ │ │ ├── temperatureAndPressure.lxx │ │ │ │ │ ├── temperatureAndPressureVariables.lxx │ │ │ │ │ └── temperatureEquilibration.lxx │ │ │ │ ├── molecule │ │ │ │ │ ├── molecule.cxx │ │ │ │ │ ├── molecule.hxx │ │ │ │ │ ├── moleculeI.hxx │ │ │ │ │ └── moleculeIO.cxx │ │ │ │ ├── moleculeCloud │ │ │ │ │ ├── moleculeCloud.cxx │ │ │ │ │ ├── moleculeCloud.hxx │ │ │ │ │ └── moleculeCloudI.hxx │ │ │ │ └── reducedUnits │ │ │ │ │ ├── reducedUnits.cxx │ │ │ │ │ ├── reducedUnits.hxx │ │ │ │ │ ├── reducedUnitsI.hxx │ │ │ │ │ └── reducedUnitsIO.cxx │ │ │ └── potential │ │ │ │ ├── electrostaticPotential │ │ │ │ ├── electrostaticPotential.cxx │ │ │ │ └── electrostaticPotential.hxx │ │ │ │ ├── energyScalingFunction │ │ │ │ ├── basic │ │ │ │ │ ├── energyScalingFunction.cxx │ │ │ │ │ ├── energyScalingFunction.hxx │ │ │ │ │ └── energyScalingFunctionNew.cxx │ │ │ │ └── derived │ │ │ │ │ ├── doubleSigmoid │ │ │ │ │ ├── doubleSigmoid.cxx │ │ │ │ │ └── doubleSigmoid.hxx │ │ │ │ │ ├── noScaling │ │ │ │ │ ├── noScaling.cxx │ │ │ │ │ └── noScaling.hxx │ │ │ │ │ ├── shifted │ │ │ │ │ ├── shifted.cxx │ │ │ │ │ └── shifted.hxx │ │ │ │ │ ├── shiftedForce │ │ │ │ │ ├── shiftedForce.cxx │ │ │ │ │ └── shiftedForce.hxx │ │ │ │ │ └── sigmoid │ │ │ │ │ ├── sigmoid.cxx │ │ │ │ │ └── sigmoid.hxx │ │ │ │ ├── pairPotential │ │ │ │ ├── basic │ │ │ │ │ ├── pairPotential.cxx │ │ │ │ │ ├── pairPotential.hxx │ │ │ │ │ ├── pairPotentialI.hxx │ │ │ │ │ ├── pairPotentialIO.cxx │ │ │ │ │ └── pairPotentialNew.cxx │ │ │ │ ├── derived │ │ │ │ │ ├── azizChen │ │ │ │ │ │ ├── azizChen.cxx │ │ │ │ │ │ └── azizChen.hxx │ │ │ │ │ ├── coulomb │ │ │ │ │ │ ├── coulomb.cxx │ │ │ │ │ │ └── coulomb.hxx │ │ │ │ │ ├── dampedCoulomb │ │ │ │ │ │ ├── dampedCoulomb.cxx │ │ │ │ │ │ └── dampedCoulomb.hxx │ │ │ │ │ ├── exponentialRepulsion │ │ │ │ │ │ ├── exponentialRepulsion.cxx │ │ │ │ │ │ └── exponentialRepulsion.hxx │ │ │ │ │ ├── lennardJones │ │ │ │ │ │ ├── lennardJones.cxx │ │ │ │ │ │ └── lennardJones.hxx │ │ │ │ │ ├── maitlandSmith │ │ │ │ │ │ ├── maitlandSmith.cxx │ │ │ │ │ │ └── maitlandSmith.hxx │ │ │ │ │ └── noInteraction │ │ │ │ │ │ ├── noInteraction.cxx │ │ │ │ │ │ └── noInteraction.hxx │ │ │ │ └── pairPotentialList │ │ │ │ │ ├── pairPotentialList.cxx │ │ │ │ │ ├── pairPotentialList.hxx │ │ │ │ │ └── pairPotentialListI.hxx │ │ │ │ ├── potential │ │ │ │ ├── potential.cxx │ │ │ │ ├── potential.hxx │ │ │ │ └── potentialI.hxx │ │ │ │ └── tetherPotential │ │ │ │ ├── basic │ │ │ │ ├── tetherPotential.cxx │ │ │ │ ├── tetherPotential.hxx │ │ │ │ └── tetherPotentialNew.cxx │ │ │ │ ├── derived │ │ │ │ ├── harmonicSpring │ │ │ │ │ ├── harmonicSpring.cxx │ │ │ │ │ └── harmonicSpring.hxx │ │ │ │ ├── pitchForkRing │ │ │ │ │ ├── pitchForkRing.cxx │ │ │ │ │ └── pitchForkRing.hxx │ │ │ │ └── restrainedHarmonicSpring │ │ │ │ │ ├── restrainedHarmonicSpring.cxx │ │ │ │ │ └── restrainedHarmonicSpring.hxx │ │ │ │ └── tetherPotentialList │ │ │ │ ├── tetherPotentialList.cxx │ │ │ │ ├── tetherPotentialList.hxx │ │ │ │ └── tetherPotentialListI.hxx │ │ ├── solidParticle │ │ │ ├── solidParticle.cxx │ │ │ ├── solidParticle.hxx │ │ │ ├── solidParticleCloud.cxx │ │ │ ├── solidParticleCloud.hxx │ │ │ ├── solidParticleCloudI.hxx │ │ │ ├── solidParticleI.hxx │ │ │ └── solidParticleIO.cxx │ │ ├── spray │ │ │ ├── clouds │ │ │ │ ├── Templates │ │ │ │ │ └── SprayCloud │ │ │ │ │ │ ├── SprayCloudTemplate.cxx-backup │ │ │ │ │ │ ├── SprayCloudTemplate.hxx │ │ │ │ │ │ ├── SprayCloudTemplateI.hxx │ │ │ │ │ │ └── SprayCloudTemplate_Imp.hxx │ │ │ │ ├── baseClasses │ │ │ │ │ └── sprayCloud │ │ │ │ │ │ ├── sprayCloud.cxx │ │ │ │ │ │ └── sprayCloud.hxx │ │ │ │ └── derived │ │ │ │ │ └── basicSprayCloud │ │ │ │ │ └── basicSprayCloud.hxx │ │ │ ├── parcels │ │ │ │ ├── Templates │ │ │ │ │ └── SprayParcel │ │ │ │ │ │ ├── SprayParcel.cxx-backup │ │ │ │ │ │ ├── SprayParcel.hxx │ │ │ │ │ │ ├── SprayParcelI.hxx │ │ │ │ │ │ ├── SprayParcelIO.cxx-backup │ │ │ │ │ │ ├── SprayParcelIO_Imp.hxx │ │ │ │ │ │ └── SprayParcel_Imp.hxx │ │ │ │ ├── derived │ │ │ │ │ └── basicSprayParcel │ │ │ │ │ │ ├── basicSprayParcel.hxx │ │ │ │ │ │ ├── defineBasicSprayParcel.cxx │ │ │ │ │ │ └── makeBasicSprayParcelSubmodels.cxx │ │ │ │ └── include │ │ │ │ │ ├── makeSprayParcelAtomizationModels.hxx │ │ │ │ │ ├── makeSprayParcelBreakupModels.hxx │ │ │ │ │ ├── makeSprayParcelInjectionModels.hxx │ │ │ │ │ └── makeSprayParcelStochasticCollisionModels.hxx │ │ │ └── submodels │ │ │ │ ├── AtomizationModel │ │ │ │ ├── AtomizationModel │ │ │ │ │ ├── AtomizationModel.cxx │ │ │ │ │ ├── AtomizationModel.hxx │ │ │ │ │ ├── AtomizationModelI.hxx │ │ │ │ │ ├── AtomizationModelNew.cxx-backup │ │ │ │ │ └── AtomizationModelNew_Imp.hxx │ │ │ │ ├── BlobsSheetAtomization │ │ │ │ │ ├── BlobsSheetAtomization.cxx-backup │ │ │ │ │ ├── BlobsSheetAtomization.hxx │ │ │ │ │ └── BlobsSheetAtomizationI.hxx │ │ │ │ ├── LISAAtomization │ │ │ │ │ ├── LISAAtomization.cxx-backup │ │ │ │ │ ├── LISAAtomization.hxx │ │ │ │ │ ├── LISAAtomizationI.hxx │ │ │ │ │ ├── LISASMDCalcMethod1.lxx │ │ │ │ │ └── LISASMDCalcMethod2.lxx │ │ │ │ └── NoAtomization │ │ │ │ │ ├── NoAtomization.cxx-backup │ │ │ │ │ ├── NoAtomization.hxx │ │ │ │ │ └── NoAtomizationI.hxx │ │ │ │ ├── BreakupModel │ │ │ │ ├── BreakupModel │ │ │ │ │ ├── BreakupModel.cxx-backup │ │ │ │ │ ├── BreakupModel.hxx │ │ │ │ │ ├── BreakupModelI.hxx │ │ │ │ │ ├── BreakupModelNew.cxx-backup │ │ │ │ │ └── BreakupModelNew_Imp.hxx │ │ │ │ ├── ETAB │ │ │ │ │ ├── ETAB.cxx-backup │ │ │ │ │ ├── ETAB.hxx │ │ │ │ │ └── ETABI.hxx │ │ │ │ ├── NoBreakup │ │ │ │ │ ├── NoBreakup.cxx-backup │ │ │ │ │ ├── NoBreakup.hxx │ │ │ │ │ └── NoBreakupI.hxx │ │ │ │ ├── PilchErdman │ │ │ │ │ ├── PilchErdman.cxx-backup │ │ │ │ │ ├── PilchErdman.hxx │ │ │ │ │ └── PilchErdmanI.hxx │ │ │ │ ├── ReitzDiwakar │ │ │ │ │ ├── ReitzDiwakar.cxx-backup │ │ │ │ │ ├── ReitzDiwakar.hxx │ │ │ │ │ └── ReitzDiwakarI.hxx │ │ │ │ ├── ReitzKHRT │ │ │ │ │ ├── ReitzKHRT.cxx-backup │ │ │ │ │ ├── ReitzKHRT.hxx │ │ │ │ │ └── ReitzKHRTI.hxx │ │ │ │ ├── SHF │ │ │ │ │ ├── SHF.cxx-backup │ │ │ │ │ ├── SHF.hxx │ │ │ │ │ └── SHFI.hxx │ │ │ │ └── TAB │ │ │ │ │ ├── TAB.cxx-backup │ │ │ │ │ ├── TAB.hxx │ │ │ │ │ ├── TABI.hxx │ │ │ │ │ ├── TABSMDCalcMethod1.lxx │ │ │ │ │ └── TABSMDCalcMethod2.lxx │ │ │ │ └── StochasticCollision │ │ │ │ ├── ORourkeCollision │ │ │ │ ├── ORourkeCollision.cxx-backup │ │ │ │ ├── ORourkeCollision.hxx │ │ │ │ └── ORourkeCollisionI.hxx │ │ │ │ └── TrajectoryCollision │ │ │ │ ├── TrajectoryCollision.cxx-backup │ │ │ │ ├── TrajectoryCollision.hxx │ │ │ │ └── TrajectoryCollisionI.hxx │ │ └── turbulence │ │ │ ├── parcels │ │ │ ├── derived │ │ │ │ ├── basicKinematicCollidingParcel │ │ │ │ │ └── makeTurbulenceBasicKinematicCollidingParcelSubmodels.cxx │ │ │ │ ├── basicKinematicMPPICParcel │ │ │ │ │ └── makeTurbulenceBasicKinematicMPPICParcelSubmodels.cxx │ │ │ │ ├── basicKinematicParcel │ │ │ │ │ └── makeTurbulenceBasicKinematicParcelSubmodels.cxx │ │ │ │ ├── basicReactingMultiphaseParcel │ │ │ │ │ └── makeTurbulenceBasicReactingMultiphaseParcelSubmodels.cxx │ │ │ │ ├── basicReactingParcel │ │ │ │ │ └── makeTurbulenceBasicReactingParcelSubmodels.cxx │ │ │ │ └── basicThermoParcel │ │ │ │ │ └── makeTurbulenceBasicThermoParcelSubmodels.cxx │ │ │ └── include │ │ │ │ ├── makeParcelTurbulenceDispersionModels.hxx │ │ │ │ └── makeThermoParcelTurbulenceForces.hxx │ │ │ └── submodels │ │ │ ├── Kinematic │ │ │ └── DispersionModel │ │ │ │ ├── DispersionRASModel │ │ │ │ ├── DispersionRASModel.cxx-backup │ │ │ │ ├── DispersionRASModel.hxx │ │ │ │ └── DispersionRASModelI.hxx │ │ │ │ ├── GradientDispersionRAS │ │ │ │ ├── GradientDispersionRAS.cxx-backup │ │ │ │ ├── GradientDispersionRAS.hxx │ │ │ │ └── GradientDispersionRASI.hxx │ │ │ │ └── StochasticDispersionRAS │ │ │ │ ├── StochasticDispersionRAS.cxx-backup │ │ │ │ ├── StochasticDispersionRAS.hxx │ │ │ │ └── StochasticDispersionRASI.hxx │ │ │ └── Thermodynamic │ │ │ └── ParticleForces │ │ │ └── BrownianMotion │ │ │ ├── BrownianMotionForce.cxx-backup │ │ │ ├── BrownianMotionForce.hxx │ │ │ ├── BrownianMotionForceI.hxx │ │ │ └── BrownianMotionForce_Imp.hxx │ └── regionModels │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── pyrolysisModels │ │ ├── noPyrolysis │ │ │ ├── noPyrolysis.cxx │ │ │ └── noPyrolysis.hxx │ │ ├── pyrolysisModel │ │ │ ├── pyrolysisModel.cxx │ │ │ ├── pyrolysisModel.hxx │ │ │ ├── pyrolysisModelCollection.cxx │ │ │ ├── pyrolysisModelCollection.hxx │ │ │ ├── pyrolysisModelI.hxx │ │ │ └── pyrolysisModelNew.cxx │ │ └── reactingOneDim │ │ │ ├── reactingOneDim.cxx │ │ │ ├── reactingOneDim.hxx │ │ │ └── reactingOneDimI.hxx │ │ ├── regionCoupling │ │ └── derivedFvPatchFields │ │ │ ├── filmPyrolysisRadiativeCoupledMixed │ │ │ ├── filmPyrolysisRadiativeCoupledMixedFvPatchScalarField.cxx │ │ │ └── filmPyrolysisRadiativeCoupledMixedFvPatchScalarField.hxx │ │ │ ├── filmPyrolysisTemperatureCoupled │ │ │ ├── filmPyrolysisTemperatureCoupledFvPatchScalarField.cxx │ │ │ └── filmPyrolysisTemperatureCoupledFvPatchScalarField.hxx │ │ │ └── filmPyrolysisVelocityCoupled │ │ │ ├── filmPyrolysisVelocityCoupledFvPatchVectorField.cxx │ │ │ └── filmPyrolysisVelocityCoupledFvPatchVectorField.hxx │ │ ├── regionModel │ │ ├── derivedFvPatches │ │ │ └── mappedVariableThicknessWall │ │ │ │ ├── mappedVariableThicknessWallFvPatch.cxx │ │ │ │ └── mappedVariableThicknessWallFvPatch.hxx │ │ ├── regionModel │ │ │ ├── regionModel.cxx │ │ │ ├── regionModel.hxx │ │ │ ├── regionModelI.hxx │ │ │ ├── regionModelTemplates.cxx-backup │ │ │ └── regionModelTemplatesI.hxx │ │ ├── regionModel1D │ │ │ ├── regionModel1D.cxx │ │ │ ├── regionModel1D.hxx │ │ │ └── regionModel1DI.hxx │ │ ├── regionModelFunctionObject │ │ │ └── regionModelFunctionObject │ │ │ │ ├── regionModelFunctionObject.cxx │ │ │ │ ├── regionModelFunctionObject.hxx │ │ │ │ ├── regionModelFunctionObjectList.cxx │ │ │ │ ├── regionModelFunctionObjectList.hxx │ │ │ │ ├── regionModelFunctionObjectListI.hxx │ │ │ │ └── regionModelFunctionObjectNew.cxx │ │ ├── regionProperties │ │ │ ├── regionProperties.cxx │ │ │ └── regionProperties.hxx │ │ └── singleLayerRegion │ │ │ ├── singleLayerRegion.cxx │ │ │ ├── singleLayerRegion.hxx │ │ │ ├── singleLayerRegionI.hxx │ │ │ └── singleLayerRegionTemplates.cxx-backup │ │ ├── surfaceFilmModels │ │ ├── derivedFvPatchFields │ │ │ ├── filmHeightInletVelocity │ │ │ │ ├── filmHeightInletVelocityFvPatchVectorField.cxx │ │ │ │ └── filmHeightInletVelocityFvPatchVectorField.hxx │ │ │ ├── inclinedFilmNusseltHeight │ │ │ │ ├── inclinedFilmNusseltHeightFvPatchScalarField.cxx │ │ │ │ └── inclinedFilmNusseltHeightFvPatchScalarField.hxx │ │ │ ├── inclinedFilmNusseltInletVelocity │ │ │ │ ├── inclinedFilmNusseltInletVelocityFvPatchVectorField.cxx │ │ │ │ └── inclinedFilmNusseltInletVelocityFvPatchVectorField.hxx │ │ │ └── wallFunctions │ │ │ │ ├── alphatFilmWallFunction │ │ │ │ ├── alphatFilmWallFunctionFvPatchScalarField.cxx │ │ │ │ └── alphatFilmWallFunctionFvPatchScalarField.hxx │ │ │ │ └── nutkFilmWallFunction │ │ │ │ ├── nutkFilmWallFunctionFvPatchScalarField.cxx │ │ │ │ └── nutkFilmWallFunctionFvPatchScalarField.hxx │ │ ├── kinematicSingleLayer │ │ │ ├── kinematicSingleLayer.cxx │ │ │ ├── kinematicSingleLayer.hxx │ │ │ ├── kinematicSingleLayerI.hxx │ │ │ ├── kinematicSingleLayerTemplates.cxx-backup │ │ │ └── kinematicSingleLayer_Imp.hxx │ │ ├── noFilm │ │ │ ├── noFilm.cxx │ │ │ └── noFilm.hxx │ │ ├── submodels │ │ │ ├── filmSubModelBase.cxx │ │ │ ├── filmSubModelBase.hxx │ │ │ ├── filmSubModelBaseI.hxx │ │ │ ├── filmSubModelBaseTemplates.cxx-backup │ │ │ ├── filmSubModelBase_Imp.hxx │ │ │ ├── kinematic │ │ │ │ ├── filmThermoModel │ │ │ │ │ ├── constantFilmThermo │ │ │ │ │ │ ├── constantFilmThermo.cxx │ │ │ │ │ │ └── constantFilmThermo.hxx │ │ │ │ │ ├── filmThermoModel │ │ │ │ │ │ ├── filmThermoModel.cxx │ │ │ │ │ │ ├── filmThermoModel.hxx │ │ │ │ │ │ └── filmThermoModelNew.cxx │ │ │ │ │ └── liquidFilmThermo │ │ │ │ │ │ ├── liquidFilmThermo.cxx │ │ │ │ │ │ └── liquidFilmThermo.hxx │ │ │ │ ├── filmTurbulenceModel │ │ │ │ │ ├── filmTurbulenceModel │ │ │ │ │ │ ├── filmTurbulenceModel.cxx │ │ │ │ │ │ ├── filmTurbulenceModel.hxx │ │ │ │ │ │ └── filmTurbulenceModelNew.cxx │ │ │ │ │ └── laminar │ │ │ │ │ │ ├── laminar.cxx │ │ │ │ │ │ └── laminar.hxx │ │ │ │ ├── force │ │ │ │ │ ├── contactAngleForces │ │ │ │ │ │ ├── contactAngleForce │ │ │ │ │ │ │ ├── contactAngleForce.cxx │ │ │ │ │ │ │ └── contactAngleForce.hxx │ │ │ │ │ │ ├── distribution │ │ │ │ │ │ │ ├── distributionContactAngleForce.cxx │ │ │ │ │ │ │ └── distributionContactAngleForce.hxx │ │ │ │ │ │ ├── perturbedTemperatureDependent │ │ │ │ │ │ │ ├── perturbedTemperatureDependentContactAngleForce.cxx │ │ │ │ │ │ │ └── perturbedTemperatureDependentContactAngleForce.hxx │ │ │ │ │ │ └── temperatureDependent │ │ │ │ │ │ │ ├── temperatureDependentContactAngleForce.cxx │ │ │ │ │ │ │ └── temperatureDependentContactAngleForce.hxx │ │ │ │ │ ├── force │ │ │ │ │ │ ├── force.cxx │ │ │ │ │ │ ├── force.hxx │ │ │ │ │ │ └── forceNew.cxx │ │ │ │ │ ├── forceList │ │ │ │ │ │ ├── forceList.cxx │ │ │ │ │ │ └── forceList.hxx │ │ │ │ │ └── thermocapillaryForce │ │ │ │ │ │ ├── thermocapillaryForce.cxx │ │ │ │ │ │ └── thermocapillaryForce.hxx │ │ │ │ ├── injectionModel │ │ │ │ │ ├── BrunDrippingInjection │ │ │ │ │ │ ├── BrunDrippingInjection.cxx │ │ │ │ │ │ └── BrunDrippingInjection.hxx │ │ │ │ │ ├── curvatureSeparation │ │ │ │ │ │ ├── curvatureSeparation.cxx │ │ │ │ │ │ └── curvatureSeparation.hxx │ │ │ │ │ ├── drippingInjection │ │ │ │ │ │ ├── drippingInjection.cxx │ │ │ │ │ │ └── drippingInjection.hxx │ │ │ │ │ ├── injectionModel │ │ │ │ │ │ ├── injectionModel.cxx │ │ │ │ │ │ ├── injectionModel.hxx │ │ │ │ │ │ └── injectionModelNew.cxx │ │ │ │ │ ├── injectionModelList │ │ │ │ │ │ ├── injectionModelList.cxx │ │ │ │ │ │ └── injectionModelList.hxx │ │ │ │ │ └── patchInjection │ │ │ │ │ │ ├── patchInjection.cxx │ │ │ │ │ │ └── patchInjection.hxx │ │ │ │ └── transferModels │ │ │ │ │ ├── transferModel │ │ │ │ │ ├── transferModel.cxx │ │ │ │ │ ├── transferModel.hxx │ │ │ │ │ └── transferModelNew.cxx │ │ │ │ │ └── transferModelList │ │ │ │ │ ├── transferModelList.cxx │ │ │ │ │ └── transferModelList.hxx │ │ │ └── thermo │ │ │ │ ├── filmRadiationModel │ │ │ │ ├── constantRadiation │ │ │ │ │ ├── constantRadiation.cxx │ │ │ │ │ └── constantRadiation.hxx │ │ │ │ ├── filmRadiationModel │ │ │ │ │ ├── filmRadiationModel.cxx │ │ │ │ │ ├── filmRadiationModel.hxx │ │ │ │ │ └── filmRadiationModelNew.cxx │ │ │ │ ├── noRadiation │ │ │ │ │ ├── noRadiation.cxx │ │ │ │ │ └── noRadiation.hxx │ │ │ │ ├── primaryRadiation │ │ │ │ │ ├── primaryRadiation.cxx │ │ │ │ │ └── primaryRadiation.hxx │ │ │ │ └── standardRadiation │ │ │ │ │ ├── standardRadiation.cxx │ │ │ │ │ └── standardRadiation.hxx │ │ │ │ ├── filmViscosityModel │ │ │ │ ├── ArrheniusViscosity │ │ │ │ │ ├── ArrheniusViscosity.cxx │ │ │ │ │ └── ArrheniusViscosity.hxx │ │ │ │ ├── constantViscosity │ │ │ │ │ ├── constantViscosity.cxx │ │ │ │ │ └── constantViscosity.hxx │ │ │ │ ├── filmViscosityModel │ │ │ │ │ ├── filmViscosityModel.cxx │ │ │ │ │ ├── filmViscosityModel.hxx │ │ │ │ │ └── filmViscosityModelNew.cxx │ │ │ │ ├── function1Viscosity │ │ │ │ │ ├── function1Viscosity.cxx │ │ │ │ │ └── function1Viscosity.hxx │ │ │ │ ├── liquidViscosity │ │ │ │ │ ├── liquidViscosity.cxx │ │ │ │ │ └── liquidViscosity.hxx │ │ │ │ ├── thixotropicViscosity │ │ │ │ │ ├── thixotropicViscosity.cxx │ │ │ │ │ └── thixotropicViscosity.hxx │ │ │ │ └── waxSolventViscosity │ │ │ │ │ ├── waxSolventViscosity.cxx │ │ │ │ │ └── waxSolventViscosity.hxx │ │ │ │ ├── heatTransferModel │ │ │ │ ├── constantHeatTransfer │ │ │ │ │ ├── constantHeatTransfer.cxx │ │ │ │ │ └── constantHeatTransfer.hxx │ │ │ │ ├── heatTransferModel │ │ │ │ │ ├── heatTransferModel.cxx │ │ │ │ │ ├── heatTransferModel.hxx │ │ │ │ │ └── heatTransferModelNew.cxx │ │ │ │ └── mappedConvectiveHeatTransfer │ │ │ │ │ ├── mappedConvectiveHeatTransfer.cxx │ │ │ │ │ └── mappedConvectiveHeatTransfer.hxx │ │ │ │ └── phaseChangeModel │ │ │ │ ├── noPhaseChange │ │ │ │ ├── noPhaseChange.cxx │ │ │ │ └── noPhaseChange.hxx │ │ │ │ ├── phaseChangeModel │ │ │ │ ├── phaseChangeModel.cxx │ │ │ │ ├── phaseChangeModel.hxx │ │ │ │ └── phaseChangeModelNew.cxx │ │ │ │ ├── solidification │ │ │ │ ├── solidificationPhaseChange.cxx │ │ │ │ └── solidificationPhaseChange.hxx │ │ │ │ ├── standardPhaseChange │ │ │ │ ├── standardPhaseChange.cxx │ │ │ │ ├── standardPhaseChange.hxx │ │ │ │ └── standardPhaseChangeI.hxx │ │ │ │ └── waxSolventEvaporation │ │ │ │ ├── waxSolventEvaporation.cxx │ │ │ │ ├── waxSolventEvaporation.hxx │ │ │ │ └── waxSolventEvaporationI.hxx │ │ ├── surfaceFilmModel │ │ │ ├── surfaceFilmModel.cxx │ │ │ ├── surfaceFilmModel.hxx │ │ │ └── surfaceFilmModelNew.cxx │ │ ├── surfaceFilmRegionModel │ │ │ ├── surfaceFilmRegionModel.cxx │ │ │ ├── surfaceFilmRegionModel.hxx │ │ │ └── surfaceFilmRegionModelI.hxx │ │ └── thermoSingleLayer │ │ │ ├── thermoSingleLayer.cxx │ │ │ ├── thermoSingleLayer.hxx │ │ │ └── thermoSingleLayerI.hxx │ │ └── thermalBaffleModels │ │ ├── derivedFvPatchFields │ │ └── thermalBaffle │ │ │ ├── thermalBaffleFvPatchScalarField.cxx │ │ │ └── thermalBaffleFvPatchScalarField.hxx │ │ ├── noThermo │ │ ├── noThermo.cxx │ │ └── noThermo.hxx │ │ ├── thermalBaffle │ │ ├── thermalBaffle.cxx │ │ ├── thermalBaffle.hxx │ │ └── thermalBaffleI.hxx │ │ └── thermalBaffleModel │ │ ├── thermalBaffleModel.cxx │ │ ├── thermalBaffleModel.hxx │ │ └── thermalBaffleModelNew.cxx └── include │ ├── ArrheniusViscosity.hxx │ ├── AtomizationModel.hxx │ ├── AtomizationModelI.hxx │ ├── AtomizationModelNew_Imp.hxx │ ├── AveragingMethod.hxx │ ├── AveragingMethodI.hxx │ ├── AveragingMethod_Imp.hxx │ ├── Basic.hxx │ ├── BasicI.hxx │ ├── BinaryCollisionModel.hxx │ ├── BinaryCollisionModelI.hxx │ ├── BinaryCollisionModelNew_Imp.hxx │ ├── BlobsSheetAtomization.hxx │ ├── BlobsSheetAtomizationI.hxx │ ├── BreakupModel.hxx │ ├── BreakupModelI.hxx │ ├── BreakupModelNew_Imp.hxx │ ├── BrownianMotionForce.hxx │ ├── BrownianMotionForceI.hxx │ ├── BrownianMotionForce_Imp.hxx │ ├── BrunDrippingInjection.hxx │ ├── COxidationDiffusionLimitedRate.hxx │ ├── COxidationDiffusionLimitedRateI.hxx │ ├── COxidationHurtMitchell.hxx │ ├── COxidationHurtMitchellI.hxx │ ├── COxidationIntrinsicRate.hxx │ ├── COxidationIntrinsicRateI.hxx │ ├── COxidationKineticDiffusionLimitedRate.hxx │ ├── COxidationKineticDiffusionLimitedRateI.hxx │ ├── COxidationMurphyShaddix.hxx │ ├── COxidationMurphyShaddixI.hxx │ ├── CellZoneInjection.hxx │ ├── CellZoneInjectionI.hxx │ ├── CloudFunctionObject.hxx │ ├── CloudFunctionObjectList.hxx │ ├── CloudFunctionObjectListI.hxx │ ├── CloudFunctionObjectList_Imp.hxx │ ├── CloudFunctionObjectNew_Imp.hxx │ ├── CloudFunctionObject_Imp.hxx │ ├── CloudSubModelBase.hxx │ ├── CloudSubModelBaseI.hxx │ ├── CloudTemplate.hxx │ ├── CloudTemplateI.hxx │ ├── CloudTemplateIO_Imp.hxx │ ├── CollidingCloud.hxx │ ├── CollidingCloudI.hxx │ ├── CollidingCloud_Imp.hxx │ ├── CollidingParcel.hxx │ ├── CollidingParcelI.hxx │ ├── CollisionModel.hxx │ ├── CollisionModelI.hxx │ ├── CollisionModelNew_Imp.hxx │ ├── CollisionRecordList.hxx │ ├── CollisionRecordListI.hxx │ ├── CompositionModel.hxx │ ├── CompositionModelI.hxx │ ├── CompositionModelNew_Imp.hxx │ ├── ConeInjection.hxx │ ├── ConeInjectionI.hxx │ ├── ConstantRateDevolatilisation.hxx │ ├── ConstantRateDevolatilisationI.hxx │ ├── CorrectionLimitingMethod.hxx │ ├── DSMCBaseCloud.hxx │ ├── DSMCCloudTemplate.hxx │ ├── DSMCCloudTemplateI.hxx │ ├── DSMCCloudTemplate_Imp.hxx │ ├── DSMCParcelTemplate.hxx │ ├── DSMCParcelTemplateI.hxx │ ├── DSMCParcelTemplateIO_Imp.hxx │ ├── DSMCParcelTemplate_Imp.hxx │ ├── DampingModel.hxx │ ├── DampingModelI.hxx │ ├── DenseDragForce.hxx │ ├── DenseDragForceI.hxx │ ├── DevolatilisationModel.hxx │ ├── DevolatilisationModelI.hxx │ ├── DevolatilisationModelNew_Imp.hxx │ ├── DispersionModel.hxx │ ├── DispersionModelI.hxx │ ├── DispersionModelNew_Imp.hxx │ ├── DispersionRASModel.hxx │ ├── DispersionRASModelI.hxx │ ├── DistortedSphereDragForce.hxx │ ├── DistortedSphereDragForceI.hxx │ ├── Dual.hxx │ ├── DualI.hxx │ ├── ETAB.hxx │ ├── ETABI.hxx │ ├── ErgunWenYuDragForce.hxx │ ├── ErgunWenYuDragForceI.hxx │ ├── Euler.hxx │ ├── Explicit.hxx │ ├── ExplicitI.hxx │ ├── FacePostProcessing.hxx │ ├── FacePostProcessingI.hxx │ ├── FacePostProcessing_Imp.hxx │ ├── FieldActivatedInjection.hxx │ ├── FieldActivatedInjectionI.hxx │ ├── FreeStream.hxx │ ├── FreeStreamI.hxx │ ├── GradientDispersionRAS.hxx │ ├── GradientDispersionRASI.hxx │ ├── GravityForce.hxx │ ├── GravityForceI.hxx │ ├── GravityForce_Imp.hxx │ ├── HarrisCrighton.hxx │ ├── HeatTransferModelTemplate.hxx │ ├── HeatTransferModelTemplateI.hxx │ ├── HeatTransferModelTemplateNew_Imp.hxx │ ├── IOPosition.hxx │ ├── IOPositionI.hxx │ ├── Implicit.hxx │ ├── ImplicitI.hxx │ ├── InflationInjection.hxx │ ├── InflationInjectionI.hxx │ ├── InflowBoundaryModel.hxx │ ├── InflowBoundaryModelI.hxx │ ├── InflowBoundaryModelNew_Imp.hxx │ ├── InjectionModelTemplate.hxx │ ├── InjectionModelTemplateI.hxx │ ├── InjectionModelTemplateList.hxx │ ├── InjectionModelTemplateListI.hxx │ ├── InjectionModelTemplateNew_Imp.hxx │ ├── InjectionModelTemplate_Imp.hxx │ ├── InteractionLists.hxx │ ├── InteractionListsI.hxx │ ├── InteractionLists_Imp.hxx │ ├── IsotropyModel.hxx │ ├── IsotropyModelI.hxx │ ├── KinematicCloudTemplate.hxx │ ├── KinematicCloudTemplateI.hxx │ ├── KinematicCloudTemplate_Imp.hxx │ ├── KinematicLookupTableInjection.hxx │ ├── KinematicLookupTableInjectionI.hxx │ ├── KinematicParcel.hxx │ ├── KinematicParcelI.hxx │ ├── KinematicParcelTrackingDataI.hxx │ ├── LISAAtomization.hxx │ ├── LISAAtomizationI.hxx │ ├── Lagrangian_Module.hxx │ ├── LarsenBorgnakkeVariableHardSphere.hxx │ ├── LarsenBorgnakkeVariableHardSphereI.hxx │ ├── LiftForce.hxx │ ├── LiftForceI.hxx │ ├── LiftForce_Imp.hxx │ ├── LiquidEvaporation.hxx │ ├── LiquidEvaporationBoil.hxx │ ├── LiquidEvaporationBoilI.hxx │ ├── LiquidEvaporationI.hxx │ ├── LocalInteraction.hxx │ ├── LocalInteractionI.hxx │ ├── Lun.hxx │ ├── MPPICCloud.hxx │ ├── MPPICCloudI.hxx │ ├── MPPICCloud_Imp.hxx │ ├── MPPICParcel.hxx │ ├── MPPICParcelI.hxx │ ├── MPPICParcelTrackingDataI.hxx │ ├── ManualInjection.hxx │ ├── ManualInjectionI.hxx │ ├── MaxwellianThermal.hxx │ ├── MaxwellianThermalI.hxx │ ├── MixedDiffuseSpecular.hxx │ ├── MixedDiffuseSpecularI.hxx │ ├── Moment.hxx │ ├── MomentI.hxx │ ├── NoAtomization.hxx │ ├── NoAtomizationI.hxx │ ├── NoBinaryCollision.hxx │ ├── NoBinaryCollisionI.hxx │ ├── NoBreakup.hxx │ ├── NoBreakupI.hxx │ ├── NoCollision.hxx │ ├── NoCollisionI.hxx │ ├── NoComposition.hxx │ ├── NoCompositionI.hxx │ ├── NoDamping.hxx │ ├── NoDampingI.hxx │ ├── NoDevolatilisation.hxx │ ├── NoDevolatilisationI.hxx │ ├── NoDispersion.hxx │ ├── NoDispersionI.hxx │ ├── NoHeatTransfer.hxx │ ├── NoHeatTransferI.hxx │ ├── NoInflow.hxx │ ├── NoInflowI.hxx │ ├── NoInjection.hxx │ ├── NoInjectionI.hxx │ ├── NoInteractionTemplate.hxx │ ├── NoInteractionTemplateI.hxx │ ├── NoIsotropy.hxx │ ├── NoIsotropyI.hxx │ ├── NoPacking.hxx │ ├── NoPackingI.hxx │ ├── NoPhaseChangeTemplate.hxx │ ├── NoPhaseChangeTemplateI.hxx │ ├── NoStochasticCollision.hxx │ ├── NoStochasticCollisionI.hxx │ ├── NoSurfaceFilm.hxx │ ├── NoSurfaceFilmI.hxx │ ├── NoSurfaceReaction.hxx │ ├── NoSurfaceReactionI.hxx │ ├── NonInertialFrameForce.hxx │ ├── NonInertialFrameForceI.hxx │ ├── NonInertialFrameForce_Imp.hxx │ ├── NonSphereDragForce.hxx │ ├── NonSphereDragForceI.hxx │ ├── ORourkeCollision.hxx │ ├── ORourkeCollisionI.hxx │ ├── PackingModel.hxx │ ├── PackingModelI.hxx │ ├── PairCollision.hxx │ ├── PairCollisionI.hxx │ ├── PairCollisionRecord.hxx │ ├── PairCollisionRecordI.hxx │ ├── PairModel.hxx │ ├── PairModelI.hxx │ ├── PairModelNew_Imp.hxx │ ├── PairSpringSliderDashpot.hxx │ ├── PairSpringSliderDashpotI.hxx │ ├── ParamagneticForce.hxx │ ├── ParamagneticForceI.hxx │ ├── ParamagneticForce_Imp.hxx │ ├── ParticleCollector.hxx │ ├── ParticleCollectorI.hxx │ ├── ParticleCollector_Imp.hxx │ ├── ParticleErosion.hxx │ ├── ParticleErosionI.hxx │ ├── ParticleForce.hxx │ ├── ParticleForceI.hxx │ ├── ParticleForceList.hxx │ ├── ParticleForceListI.hxx │ ├── ParticleForceList_Imp.hxx │ ├── ParticleForceNew_Imp.hxx │ ├── ParticleForce_Imp.hxx │ ├── ParticleStressModel.hxx │ ├── ParticleTracks.hxx │ ├── ParticleTracksI.hxx │ ├── ParticleTracks_Imp.hxx │ ├── ParticleTrap.hxx │ ├── ParticleTrapI.hxx │ ├── PatchCollisionDensity.hxx │ ├── PatchCollisionDensityI.hxx │ ├── PatchFlowRateInjection.hxx │ ├── PatchFlowRateInjectionI.hxx │ ├── PatchInjectionTemplate.hxx │ ├── PatchInjectionTemplateI.hxx │ ├── PatchInteractionModel.hxx │ ├── PatchInteractionModelI.hxx │ ├── PatchInteractionModelNew_Imp.hxx │ ├── PatchPostProcessing.hxx │ ├── PatchPostProcessingI.hxx │ ├── PatchPostProcessing_Imp.hxx │ ├── PhaseChangeModelTemplate.hxx │ ├── PhaseChangeModelTemplateI.hxx │ ├── PhaseChangeModelTemplateNew_Imp.hxx │ ├── PilchErdman.hxx │ ├── PilchErdmanI.hxx │ ├── PlessisMasliyahDragForce.hxx │ ├── PlessisMasliyahDragForceI.hxx │ ├── PressureGradientForce.hxx │ ├── PressureGradientForceI.hxx │ ├── PressureGradientForce_Imp.hxx │ ├── RanzMarshall.hxx │ ├── RanzMarshallI.hxx │ ├── ReactingCloudTemplate.hxx │ ├── ReactingCloudTemplateI.hxx │ ├── ReactingCloudTemplate_Imp.hxx │ ├── ReactingLookupTableInjection.hxx │ ├── ReactingLookupTableInjectionI.hxx │ ├── ReactingMultiphaseCloudTemplate.hxx │ ├── ReactingMultiphaseCloudTemplateI.hxx │ ├── ReactingMultiphaseCloudTemplate_Imp.hxx │ ├── ReactingMultiphaseLookupTableInjection.hxx │ ├── ReactingMultiphaseLookupTableInjectionI.hxx │ ├── ReactingMultiphaseParcel.hxx │ ├── ReactingMultiphaseParcelI.hxx │ ├── ReactingParcel.hxx │ ├── ReactingParcelI.hxx │ ├── ReactingParcelTrackingDataI.hxx │ ├── Rebound.hxx │ ├── ReboundI.hxx │ ├── ReitzDiwakar.hxx │ ├── ReitzDiwakarI.hxx │ ├── ReitzKHRT.hxx │ ├── ReitzKHRTI.hxx │ ├── RelativeVelocity.hxx │ ├── RelativeVelocityI.hxx │ ├── Relaxation.hxx │ ├── RelaxationI.hxx │ ├── RosinRammler.hxx │ ├── SHF.hxx │ ├── SHFI.hxx │ ├── SRFForce.hxx │ ├── SRFForceI.hxx │ ├── SaffmanMeiLiftForce.hxx │ ├── SaffmanMeiLiftForceI.hxx │ ├── ScaledForce.hxx │ ├── ScaledForceI.hxx │ ├── SchillerNaumannDragForce.hxx │ ├── SchillerNaumannDragForceI.hxx │ ├── SingleKineticRateDevolatilisation.hxx │ ├── SingleKineticRateDevolatilisationI.hxx │ ├── SingleMixtureFraction.hxx │ ├── SingleMixtureFractionI.hxx │ ├── SinglePhaseMixture.hxx │ ├── SinglePhaseMixtureI.hxx │ ├── SpecularReflection.hxx │ ├── SpecularReflectionI.hxx │ ├── SphereDragForce.hxx │ ├── SphereDragForceI.hxx │ ├── SprayCloudTemplate.hxx │ ├── SprayCloudTemplateI.hxx │ ├── SprayCloudTemplate_Imp.hxx │ ├── SprayParcel.hxx │ ├── SprayParcelI.hxx │ ├── SprayParcelIO_Imp.hxx │ ├── SprayParcel_Imp.hxx │ ├── StandardWallInteraction.hxx │ ├── StandardWallInteractionI.hxx │ ├── Stochastic.hxx │ ├── StochasticCollisionModel.hxx │ ├── StochasticCollisionModelI.hxx │ ├── StochasticCollisionModelNew_Imp.hxx │ ├── StochasticDispersionRAS.hxx │ ├── StochasticDispersionRASI.hxx │ ├── StochasticI.hxx │ ├── SuppressionCollision.hxx │ ├── SuppressionCollisionI.hxx │ ├── SurfaceFilmModelTemplate.hxx │ ├── SurfaceFilmModelTemplateI.hxx │ ├── SurfaceFilmModelTemplateNew_Imp.hxx │ ├── SurfaceFilmModelTemplate_Imp.hxx │ ├── SurfaceReactionModel.hxx │ ├── SurfaceReactionModelI.hxx │ ├── SurfaceReactionModelNew_Imp.hxx │ ├── TAB.hxx │ ├── TABI.hxx │ ├── ThermoCloudTemplate.hxx │ ├── ThermoCloudTemplateI.hxx │ ├── ThermoCloudTemplate_Imp.hxx │ ├── ThermoLookupTableInjection.hxx │ ├── ThermoLookupTableInjectionI.hxx │ ├── ThermoParcel.hxx │ ├── ThermoParcelI.hxx │ ├── ThermoParcelTrackingDataI.hxx │ ├── ThermoSurfaceFilm.hxx │ ├── ThermoSurfaceFilmI.hxx │ ├── TimeScaleModel.hxx │ ├── TomiyamaLiftForce.hxx │ ├── TomiyamaLiftForceI.hxx │ ├── TrajectoryCollision.hxx │ ├── TrajectoryCollisionI.hxx │ ├── VariableHardSphere.hxx │ ├── VariableHardSphereI.hxx │ ├── VirtualMassForce.hxx │ ├── VirtualMassForceI.hxx │ ├── VoidFraction.hxx │ ├── VoidFractionI.hxx │ ├── WallCollisionRecord.hxx │ ├── WallCollisionRecordI.hxx │ ├── WallInteractionModel.hxx │ ├── WallInteractionModelI.hxx │ ├── WallInteractionModelNew_Imp.hxx │ ├── WallLocalSpringSliderDashpot.hxx │ ├── WallLocalSpringSliderDashpotI.hxx │ ├── WallModel.hxx │ ├── WallModelI.hxx │ ├── WallModelNew_Imp.hxx │ ├── WallSiteData.hxx │ ├── WallSiteDataI.hxx │ ├── WallSiteData_Imp.hxx │ ├── WallSpringSliderDashpot.hxx │ ├── WallSpringSliderDashpotI.hxx │ ├── WenYuDragForce.hxx │ ├── WenYuDragForceI.hxx │ ├── absolute.hxx │ ├── alphatFilmWallFunctionFvPatchScalarField.hxx │ ├── analytical.hxx │ ├── azizChen.hxx │ ├── basicKinematicCloud.hxx │ ├── basicKinematicCollidingCloud.hxx │ ├── basicKinematicCollidingParcel.hxx │ ├── basicKinematicMPPICCloud.hxx │ ├── basicKinematicMPPICParcel.hxx │ ├── basicKinematicParcel.hxx │ ├── basicReactingCloud.hxx │ ├── basicReactingMultiphaseCloud.hxx │ ├── basicReactingMultiphaseParcel.hxx │ ├── basicReactingParcel.hxx │ ├── basicSprayCloud.hxx │ ├── basicSprayParcel.hxx │ ├── basicThermoCloud.hxx │ ├── basicThermoParcel.hxx │ ├── bufferedAccumulator.hxx │ ├── bufferedAccumulatorI.hxx │ ├── bufferedAccumulatorIO_Imp.hxx │ ├── bufferedAccumulator_Imp.hxx │ ├── cloudAbsorptionEmission.hxx │ ├── cloudScatter.hxx │ ├── cloudSolution.hxx │ ├── cloudSolutionI.hxx │ ├── coalCloud.hxx │ ├── coalCloudList.hxx │ ├── coalCloudListI.hxx │ ├── coalParcel.hxx │ ├── constantFilmThermo.hxx │ ├── constantHeatTransfer.hxx │ ├── constantRadiation.hxx │ ├── constantViscosity.hxx │ ├── contactAngleForce.hxx │ ├── correlationFunction.hxx │ ├── correlationFunctionI.hxx │ ├── correlationFunctionIO_Imp.hxx │ ├── correlationFunction_Imp.hxx │ ├── coulomb.hxx │ ├── curvatureSeparation.hxx │ ├── dampedCoulomb.hxx │ ├── distribution.hxx │ ├── distributionContactAngleForce.hxx │ ├── distributionI.hxx │ ├── distributionModel.hxx │ ├── doubleSigmoid.hxx │ ├── drippingInjection.hxx │ ├── dsmcCloud.hxx │ ├── dsmcParcel.hxx │ ├── electrostaticPotential.hxx │ ├── energyScalingFunction.hxx │ ├── equilibrium.hxx │ ├── exponential.hxx │ ├── exponentialParticleStressModel.hxx │ ├── exponentialRepulsion.hxx │ ├── filmHeightInletVelocityFvPatchVectorField.hxx │ ├── filmPyrolysisRadiativeCoupledMixedFvPatchScalarField.hxx │ ├── filmPyrolysisTemperatureCoupledFvPatchScalarField.hxx │ ├── filmPyrolysisVelocityCoupledFvPatchVectorField.hxx │ ├── filmRadiationModel.hxx │ ├── filmSubModelBase.hxx │ ├── filmSubModelBaseI.hxx │ ├── filmSubModelBase_Imp.hxx │ ├── filmThermoModel.hxx │ ├── filmTurbulenceModel.hxx │ ├── filmViscosityModel.hxx │ ├── fixedValue.hxx │ ├── force.hxx │ ├── forceList.hxx │ ├── forceSuSp.hxx │ ├── forceSuSpI.hxx │ ├── function1Viscosity.hxx │ ├── general.hxx │ ├── harmonicSpring.hxx │ ├── heatTransferModel.hxx │ ├── inclinedFilmNusseltHeightFvPatchScalarField.hxx │ ├── inclinedFilmNusseltInletVelocityFvPatchVectorField.hxx │ ├── indexedParticle.hxx │ ├── indexedParticleCloud.hxx │ ├── injectionModel.hxx │ ├── injectionModelList.hxx │ ├── integrationScheme.hxx │ ├── integrationSchemeI.hxx │ ├── isotropic.hxx │ ├── kinematicCloud.hxx │ ├── kinematicParcelInjectionData.hxx │ ├── kinematicParcelInjectionDataI.hxx │ ├── kinematicParcelInjectionDataIOList.hxx │ ├── kinematicSingleLayer.hxx │ ├── kinematicSingleLayerI.hxx │ ├── kinematicSingleLayer_Imp.hxx │ ├── laminar.hxx │ ├── lennardJones.hxx │ ├── liquidFilmThermo.hxx │ ├── liquidViscosity.hxx │ ├── maitlandSmith.hxx │ ├── makeCoalParcelSurfaceReactionModels.hxx │ ├── makeMPPICParcelDampingModels.hxx │ ├── makeMPPICParcelIsotropyModels.hxx │ ├── makeMPPICParcelPackingModels.hxx │ ├── makeParcelCloudFunctionObjects.hxx │ ├── makeParcelCollisionModels.hxx │ ├── makeParcelDispersionModels.hxx │ ├── makeParcelForces.hxx │ ├── makeParcelHeatTransferModels.hxx │ ├── makeParcelInjectionModels.hxx │ ├── makeParcelPatchInteractionModels.hxx │ ├── makeParcelStochasticCollisionModels.hxx │ ├── makeParcelSurfaceFilmModels.hxx │ ├── makeParcelTurbulenceDispersionModels.hxx │ ├── makeReactingMultiphaseParcelCompositionModels.hxx │ ├── makeReactingMultiphaseParcelDevolatilisationModels.hxx │ ├── makeReactingMultiphaseParcelInjectionModels.hxx │ ├── makeReactingMultiphaseParcelStochasticCollisionModels.hxx │ ├── makeReactingMultiphaseParcelSurfaceReactionModels.hxx │ ├── makeReactingParcelCompositionModels.hxx │ ├── makeReactingParcelInjectionModels.hxx │ ├── makeReactingParcelPhaseChangeModels.hxx │ ├── makeReactingParcelSurfaceFilmModels.hxx │ ├── makeSprayParcelAtomizationModels.hxx │ ├── makeSprayParcelBreakupModels.hxx │ ├── makeSprayParcelInjectionModels-0.hxx │ ├── makeSprayParcelInjectionModels.hxx │ ├── makeSprayParcelStochasticCollisionModels.hxx │ ├── makeThermoParcelSurfaceFilmModels.hxx │ ├── makeThermoParcelTurbulenceForces.hxx │ ├── mappedConvectiveHeatTransfer.hxx │ ├── mappedVariableThicknessWallFvPatch.hxx │ ├── massRosinRammler.hxx │ ├── md.hxx │ ├── molecule.hxx │ ├── moleculeCloud.hxx │ ├── moleculeCloudI.hxx │ ├── moleculeI.hxx │ ├── multiNormal.hxx │ ├── noCorrectionLimiting.hxx │ ├── noFilm.hxx │ ├── noInteraction.hxx │ ├── noPhaseChange.hxx │ ├── noPyrolysis.hxx │ ├── noRadiation.hxx │ ├── noScaling.hxx │ ├── noThermo.hxx │ ├── nonEquilibrium.hxx │ ├── normal.hxx │ ├── nutkFilmWallFunctionFvPatchScalarField.hxx │ ├── pairPotential.hxx │ ├── pairPotentialI.hxx │ ├── pairPotentialList.hxx │ ├── pairPotentialListI.hxx │ ├── particle.hxx │ ├── particleI.hxx │ ├── particleMacros.hxx │ ├── particleTemplatesI.hxx │ ├── passiveParticle.hxx │ ├── passiveParticleCloud.hxx │ ├── patchInjection.hxx │ ├── patchInjectionBase.hxx │ ├── patchInteractionData.hxx │ ├── patchInteractionDataList.hxx │ ├── perturbedTemperatureDependentContactAngleForce.hxx │ ├── phaseChangeModel.hxx │ ├── phaseProperties.hxx │ ├── phasePropertiesList.hxx │ ├── pitchForkRing.hxx │ ├── potential.hxx │ ├── potentialI.hxx │ ├── primaryRadiation.hxx │ ├── pyrolysisModel.hxx │ ├── pyrolysisModelCollection.hxx │ ├── pyrolysisModelI.hxx │ ├── reactingCloud.hxx │ ├── reactingMultiphaseCloud.hxx │ ├── reactingMultiphaseParcelInjectionData.hxx │ ├── reactingMultiphaseParcelInjectionDataI.hxx │ ├── reactingMultiphaseParcelInjectionDataIOList.hxx │ ├── reactingOneDim.hxx │ ├── reactingOneDimI.hxx │ ├── reactingParcelInjectionData.hxx │ ├── reactingParcelInjectionDataI.hxx │ ├── reactingParcelInjectionDataIOList.hxx │ ├── reducedUnits.hxx │ ├── reducedUnitsI.hxx │ ├── referredWallFace.hxx │ ├── referredWallFaceI.hxx │ ├── regionModel.hxx │ ├── regionModel1D.hxx │ ├── regionModel1DI.hxx │ ├── regionModelFunctionObject.hxx │ ├── regionModelFunctionObjectList.hxx │ ├── regionModelFunctionObjectListI.hxx │ ├── regionModelI.hxx │ ├── regionModelTemplatesI.hxx │ ├── regionProperties.hxx │ ├── relative.hxx │ ├── restrainedHarmonicSpring.hxx │ ├── shifted.hxx │ ├── shiftedForce.hxx │ ├── sigmoid.hxx │ ├── singleLayerRegion.hxx │ ├── singleLayerRegionI.hxx │ ├── solidParticle.hxx │ ├── solidParticleCloud.hxx │ ├── solidParticleCloudI.hxx │ ├── solidParticleI.hxx │ ├── solidificationPhaseChange.hxx │ ├── sprayCloud.hxx │ ├── standardPhaseChange.hxx │ ├── standardPhaseChangeI.hxx │ ├── standardRadiation.hxx │ ├── surfaceFilmModel.hxx │ ├── surfaceFilmRegionModel.hxx │ ├── surfaceFilmRegionModelI.hxx │ ├── temperatureDependentContactAngleForce.hxx │ ├── tetherPotential.hxx │ ├── tetherPotentialList.hxx │ ├── tetherPotentialListI.hxx │ ├── thermalBaffle.hxx │ ├── thermalBaffleFvPatchScalarField.hxx │ ├── thermalBaffleI.hxx │ ├── thermalBaffleModel.hxx │ ├── thermoCloud.hxx │ ├── thermoParcelInjectionData.hxx │ ├── thermoParcelInjectionDataI.hxx │ ├── thermoParcelInjectionDataIOList.hxx │ ├── thermoSingleLayer.hxx │ ├── thermoSingleLayerI.hxx │ ├── thermocapillaryForce.hxx │ ├── thixotropicViscosity.hxx │ ├── transferModel.hxx │ ├── transferModelList.hxx │ ├── uniform.hxx │ ├── waxSolventEvaporation.hxx │ ├── waxSolventEvaporationI.hxx │ └── waxSolventViscosity.hxx ├── TnbODE ├── TnbLib │ └── ODE │ │ ├── ODESolvers │ │ ├── Euler │ │ │ ├── Euler.cxx │ │ │ └── Euler.hxx │ │ ├── EulerSI │ │ │ ├── EulerSI.cxx │ │ │ └── EulerSI.hxx │ │ ├── ODESolver │ │ │ ├── ODESolver.cxx │ │ │ ├── ODESolver.hxx │ │ │ ├── ODESolverI.hxx │ │ │ └── ODESolverNew.cxx │ │ ├── RKCK45 │ │ │ ├── RKCK45.cxx │ │ │ └── RKCK45.hxx │ │ ├── RKDP45 │ │ │ ├── RKDP45.cxx │ │ │ └── RKDP45.hxx │ │ ├── RKF45 │ │ │ ├── RKF45.cxx │ │ │ └── RKF45.hxx │ │ ├── Rosenbrock12 │ │ │ ├── Rosenbrock12.cxx │ │ │ └── Rosenbrock12.hxx │ │ ├── Rosenbrock23 │ │ │ ├── Rosenbrock23.cxx │ │ │ └── Rosenbrock23.hxx │ │ ├── Rosenbrock34 │ │ │ ├── Rosenbrock34.cxx │ │ │ └── Rosenbrock34.hxx │ │ ├── SIBS │ │ │ ├── SIBS.cxx │ │ │ ├── SIBS.hxx │ │ │ ├── SIMPR.cxx │ │ │ └── polyExtrapolate.cxx │ │ ├── Trapezoid │ │ │ ├── Trapezoid.cxx │ │ │ └── Trapezoid.hxx │ │ ├── adaptiveSolver │ │ │ ├── adaptiveSolver.cxx │ │ │ └── adaptiveSolver.hxx │ │ ├── rodas23 │ │ │ ├── rodas23.cxx │ │ │ └── rodas23.hxx │ │ ├── rodas34 │ │ │ ├── rodas34.cxx │ │ │ └── rodas34.hxx │ │ └── seulex │ │ │ ├── seulex.cxx │ │ │ └── seulex.hxx │ │ ├── ODESystem │ │ ├── ODESystem.cxx │ │ └── ODESystem.hxx │ │ └── module │ │ └── ODE_Module.hxx ├── TnbODE.vcxproj ├── TnbODE.vcxproj.filters └── include │ ├── Euler.hxx │ ├── EulerSI.hxx │ ├── ODESolver.hxx │ ├── ODESolverI.hxx │ ├── ODESystem.hxx │ ├── ODE_Module.hxx │ ├── RKCK45.hxx │ ├── RKDP45.hxx │ ├── RKF45.hxx │ ├── Rosenbrock12.hxx │ ├── Rosenbrock23.hxx │ ├── Rosenbrock34.hxx │ ├── SIBS.hxx │ ├── Trapezoid.hxx │ ├── adaptiveSolver.hxx │ ├── rodas23.hxx │ ├── rodas34.hxx │ └── seulex.hxx ├── TnbParallel ├── TnbLib │ └── parallel │ │ ├── Allwmake │ │ ├── decompose │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── decompose │ │ │ ├── decompositionModel.cxx │ │ │ ├── decompositionModel.hxx │ │ │ ├── fvFieldDecomposer.cxx │ │ │ ├── fvFieldDecomposer.hxx │ │ │ ├── fvFieldDecomposerDecomposeFields.cxx-backup │ │ │ └── fvFieldDecomposerDecomposeFieldsI.hxx │ │ ├── decompositionMethods │ │ │ ├── decompositionConstraints │ │ │ │ ├── decompositionConstraint │ │ │ │ │ ├── decompositionConstraint.cxx │ │ │ │ │ └── decompositionConstraint.hxx │ │ │ │ ├── preserveBaffles │ │ │ │ │ ├── preserveBafflesConstraint.cxx │ │ │ │ │ └── preserveBafflesConstraint.hxx │ │ │ │ ├── preserveFaceZones │ │ │ │ │ ├── preserveFaceZonesConstraint.cxx │ │ │ │ │ └── preserveFaceZonesConstraint.hxx │ │ │ │ ├── preservePatches │ │ │ │ │ ├── preservePatchesConstraint.cxx │ │ │ │ │ └── preservePatchesConstraint.hxx │ │ │ │ ├── refinementHistory │ │ │ │ │ ├── refinementHistoryConstraint.cxx │ │ │ │ │ └── refinementHistoryConstraint.hxx │ │ │ │ └── singleProcessorFaceSets │ │ │ │ │ ├── singleProcessorFaceSetsConstraint.cxx │ │ │ │ │ └── singleProcessorFaceSetsConstraint.hxx │ │ │ ├── decompositionMethod │ │ │ │ ├── decompositionMethod.cxx │ │ │ │ └── decompositionMethod.hxx │ │ │ ├── geomDecomp │ │ │ │ ├── geomDecomp.cxx │ │ │ │ └── geomDecomp.hxx │ │ │ ├── hierarchGeomDecomp │ │ │ │ ├── hierarchGeomDecomp.cxx │ │ │ │ └── hierarchGeomDecomp.hxx │ │ │ ├── manualDecomp │ │ │ │ ├── manualDecomp.cxx │ │ │ │ └── manualDecomp.hxx │ │ │ ├── multiLevelDecomp │ │ │ │ ├── multiLevelDecomp.cxx │ │ │ │ └── multiLevelDecomp.hxx │ │ │ ├── noDecomp │ │ │ │ ├── noDecomp.cxx │ │ │ │ └── noDecomp.hxx │ │ │ ├── simpleGeomDecomp │ │ │ │ ├── simpleGeomDecomp.cxx │ │ │ │ └── simpleGeomDecomp.hxx │ │ │ └── structuredDecomp │ │ │ │ ├── structuredDecomp.cxx │ │ │ │ └── structuredDecomp.hxx │ │ ├── metisDecomp │ │ │ ├── Allwmake │ │ │ ├── metisDecomp.cxx │ │ │ └── metisDecomp.hxx │ │ ├── ptscotchDecomp │ │ │ ├── ptscotchDecomp.cxx │ │ │ └── ptscotchDecomp.hxx │ │ └── scotchDecomp │ │ │ ├── scotchDecomp.cxx │ │ │ └── scotchDecomp.hxx │ │ ├── distributed │ │ └── distributedTriSurfaceMesh │ │ │ ├── distributedTriSurfaceMesh.cxx │ │ │ ├── distributedTriSurfaceMesh.hxx │ │ │ ├── distributedTriSurfaceMeshI.hxx │ │ │ └── distributedTriSurfaceMeshTemplates.cxx-backup │ │ ├── module │ │ └── Parallel_Module.hxx │ │ └── reconstruct │ │ ├── Allwmake │ │ └── reconstruct │ │ ├── fvFieldReconstructor.cxx │ │ ├── fvFieldReconstructor.hxx │ │ ├── fvFieldReconstructorReconstructFields.cxx-backup │ │ ├── fvFieldReconstructorReconstructFieldsI.hxx │ │ ├── pointFieldReconstructor.cxx │ │ ├── pointFieldReconstructor.hxx │ │ ├── pointFieldReconstructorReconstructFields.cxx-backup │ │ ├── pointFieldReconstructorReconstructFieldsI.hxx │ │ ├── processorMeshes.cxx │ │ ├── processorMeshes.hxx │ │ ├── reconstructLagrangian.hxx │ │ ├── reconstructLagrangianFields.cxx-backup │ │ ├── reconstructLagrangianFieldsI.hxx │ │ └── reconstructLagrangianPositions.cxx ├── TnbParallel.vcxproj ├── TnbParallel.vcxproj.filters ├── cpp.hint └── include │ ├── Parallel_Module.hxx │ ├── decompositionConstraint.hxx │ ├── decompositionMethod.hxx │ ├── decompositionModel.hxx │ ├── distributedTriSurfaceMesh.hxx │ ├── distributedTriSurfaceMeshI.hxx │ ├── fvFieldDecomposer.hxx │ ├── fvFieldDecomposerDecomposeFieldsI.hxx │ ├── fvFieldReconstructor.hxx │ ├── fvFieldReconstructorReconstructFieldsI.hxx │ ├── geomDecomp.hxx │ ├── hierarchGeomDecomp.hxx │ ├── manualDecomp.hxx │ ├── metisDecomp.hxx │ ├── multiLevelDecomp.hxx │ ├── noDecomp.hxx │ ├── pointFieldReconstructor.hxx │ ├── pointFieldReconstructorReconstructFieldsI.hxx │ ├── preserveBafflesConstraint.hxx │ ├── preserveFaceZonesConstraint.hxx │ ├── preservePatchesConstraint.hxx │ ├── processorMeshes.hxx │ ├── ptscotchDecomp.hxx │ ├── reconstructLagrangian.hxx │ ├── reconstructLagrangianFieldsI.hxx │ ├── refinementHistoryConstraint.hxx │ ├── scotchDecomp.hxx │ ├── simpleGeomDecomp.hxx │ ├── singleProcessorFaceSetsConstraint.hxx │ └── structuredDecomp.hxx ├── TnbRadiationModels ├── TnbLib │ └── radiationModels │ │ ├── absorptionEmissionModels │ │ ├── absorptionEmissionModel │ │ │ ├── absorptionEmissionModel.cxx │ │ │ ├── absorptionEmissionModel.hxx │ │ │ └── absorptionEmissionModelNew.cxx │ │ ├── binary │ │ │ ├── binary.cxx │ │ │ └── binary.hxx │ │ ├── constantAbsorptionEmission │ │ │ ├── constantAbsorptionEmission.cxx │ │ │ └── constantAbsorptionEmission.hxx │ │ ├── greyMean │ │ │ ├── greyMean.cxx │ │ │ └── greyMean.hxx │ │ ├── greyMeanSolid │ │ │ ├── greyMeanSolid.cxx │ │ │ └── greyMeanSolid.hxx │ │ ├── noAbsorptionEmission │ │ │ ├── noAbsorptionEmission.cxx │ │ │ └── noAbsorptionEmission.hxx │ │ └── wideBand │ │ │ ├── wideBand.cxx │ │ │ └── wideBand.hxx │ │ ├── derivedFvPatchFields │ │ ├── MarshakRadiation │ │ │ ├── MarshakRadiationFvPatchScalarField.cxx │ │ │ └── MarshakRadiationFvPatchScalarField.hxx │ │ ├── MarshakRadiationFixedTemperature │ │ │ ├── MarshakRadiationFixedTemperatureFvPatchScalarField.cxx │ │ │ └── MarshakRadiationFixedTemperatureFvPatchScalarField.hxx │ │ ├── greyDiffusiveRadiation │ │ │ ├── greyDiffusiveRadiationMixedFvPatchScalarField.cxx │ │ │ └── greyDiffusiveRadiationMixedFvPatchScalarField.hxx │ │ ├── greyDiffusiveViewFactor │ │ │ ├── greyDiffusiveViewFactorFixedValueFvPatchScalarField.cxx │ │ │ └── greyDiffusiveViewFactorFixedValueFvPatchScalarField.hxx │ │ ├── radiationCoupledBase │ │ │ ├── radiationCoupledBase.cxx │ │ │ └── radiationCoupledBase.hxx │ │ └── wideBandDiffusiveRadiation │ │ │ ├── wideBandDiffusiveRadiationMixedFvPatchScalarField.cxx │ │ │ └── wideBandDiffusiveRadiationMixedFvPatchScalarField.hxx │ │ ├── fvOptions │ │ └── radiation │ │ │ ├── radiation.cxx │ │ │ └── radiation.hxx │ │ ├── include │ │ ├── createIncompressibleRadiationModel.lxx │ │ └── createRadiationModel.lxx │ │ ├── module │ │ └── RadiationModels_Module.hxx │ │ ├── radiationModels │ │ ├── P1 │ │ │ ├── P1.cxx │ │ │ └── P1.hxx │ │ ├── fvDOM │ │ │ ├── absorptionCoeffs │ │ │ │ ├── absorptionCoeffs.cxx │ │ │ │ ├── absorptionCoeffs.hxx │ │ │ │ └── absorptionCoeffsI.hxx │ │ │ ├── blackBodyEmission │ │ │ │ ├── blackBodyEmission.cxx │ │ │ │ └── blackBodyEmission.hxx │ │ │ ├── fvDOM.cxx │ │ │ ├── fvDOM.hxx │ │ │ ├── fvDOMI.hxx │ │ │ └── radiativeIntensityRay │ │ │ │ ├── radiativeIntensityRay.cxx │ │ │ │ ├── radiativeIntensityRay.hxx │ │ │ │ └── radiativeIntensityRayI.hxx │ │ ├── noRadiation │ │ │ ├── noRadiation.cxx │ │ │ └── noRadiation.hxx │ │ ├── opaqueSolid │ │ │ ├── opaqueSolid.cxx │ │ │ └── opaqueSolid.hxx │ │ ├── radiationModel │ │ │ ├── radiationModel.cxx │ │ │ ├── radiationModel.hxx │ │ │ └── radiationModelNew.cxx │ │ └── viewFactor │ │ │ ├── viewFactor.cxx │ │ │ ├── viewFactor.hxx │ │ │ └── viewFactorI.hxx │ │ ├── scatterModels │ │ ├── constantScatter │ │ │ ├── constantScatter.cxx │ │ │ └── constantScatter.hxx │ │ ├── noScatter │ │ │ ├── noScatter.cxx │ │ │ └── noScatter.hxx │ │ └── scatterModel │ │ │ ├── scatterModel.cxx │ │ │ ├── scatterModel.hxx │ │ │ └── scatterModelNew.cxx │ │ └── sootModels │ │ ├── mixtureFraction │ │ ├── mixtureFraction.cxx-backup │ │ ├── mixtureFraction.hxx │ │ ├── mixtureFractionI.hxx │ │ └── mixtureFractions.cxx │ │ ├── noSoot │ │ ├── noSoot.cxx │ │ └── noSoot.hxx │ │ └── sootModel │ │ ├── makeSootTypes.hxx │ │ ├── sootModel.cxx │ │ ├── sootModel.hxx │ │ └── sootModelNew.cxx ├── TnbRadiationModels.vcxproj ├── TnbRadiationModels.vcxproj.filters └── include │ ├── MarshakRadiationFixedTemperatureFvPatchScalarField.hxx │ ├── MarshakRadiationFvPatchScalarField.hxx │ ├── P1.hxx │ ├── RadiationModels_Module.hxx │ ├── absorptionCoeffs.hxx │ ├── absorptionCoeffsI.hxx │ ├── absorptionEmissionModel.hxx │ ├── binary.hxx │ ├── blackBodyEmission.hxx │ ├── constantAbsorptionEmission.hxx │ ├── constantScatter.hxx │ ├── fvDOM.hxx │ ├── fvDOMI.hxx │ ├── greyDiffusiveRadiationMixedFvPatchScalarField.hxx │ ├── greyDiffusiveViewFactorFixedValueFvPatchScalarField.hxx │ ├── greyMean.hxx │ ├── greyMeanSolid.hxx │ ├── makeSootTypes.hxx │ ├── mixtureFraction.hxx │ ├── mixtureFractionI.hxx │ ├── noAbsorptionEmission.hxx │ ├── noRadiation.hxx │ ├── noScatter.hxx │ ├── noSoot.hxx │ ├── opaqueSolid.hxx │ ├── radiation.hxx │ ├── radiationCoupledBase.hxx │ ├── radiationModel.hxx │ ├── radiativeIntensityRay.hxx │ ├── radiativeIntensityRayI.hxx │ ├── scatterModel.hxx │ ├── sootModel.hxx │ ├── viewFactor.hxx │ ├── viewFactorI.hxx │ ├── wideBand.hxx │ └── wideBandDiffusiveRadiationMixedFvPatchScalarField.hxx ├── TnbRandomProcesses ├── TnbLib │ └── randomProcesses │ │ ├── Kmesh │ │ ├── Kmesh.cxx │ │ ├── Kmesh.hxx │ │ └── KmeshI.hxx │ │ ├── fft │ │ ├── calcEk.cxx │ │ ├── calcEk.hxx │ │ ├── fft.cxx │ │ ├── fft.hxx │ │ ├── fftRenumber.cxx │ │ ├── fftRenumber.hxx │ │ ├── kShellIntegration.cxx │ │ └── kShellIntegration.hxx │ │ ├── module │ │ └── RandomProcesses_Module.hxx │ │ ├── noise │ │ ├── noiseFFT.cxx │ │ └── noiseFFT.hxx │ │ ├── processes │ │ └── UOprocess │ │ │ ├── UOprocess.cxx │ │ │ └── UOprocess.hxx │ │ └── turbulence │ │ ├── Ek.hxx │ │ ├── turbGen.cxx │ │ └── turbGen.hxx ├── TnbRandomProcesses.vcxproj ├── TnbRandomProcesses.vcxproj.filters └── include │ ├── Ek.hxx │ ├── Kmesh.hxx │ ├── KmeshI.hxx │ ├── RandomProcesses_Module.hxx │ ├── UOprocess.hxx │ ├── calcEk.hxx │ ├── fft.hxx │ ├── fftRenumber.hxx │ ├── kShellIntegration.hxx │ ├── noiseFFT.hxx │ └── turbGen.hxx ├── TnbRenumber ├── TnbLib │ └── renumber │ │ ├── SloanRenumber │ │ ├── SloanRenumber.cxx │ │ └── SloanRenumber.hxx │ │ ├── module │ │ └── Renumber_Module.hxx │ │ ├── renumberMethods │ │ ├── CuthillMcKeeRenumber │ │ │ ├── CuthillMcKeeRenumber.cxx │ │ │ └── CuthillMcKeeRenumber.hxx │ │ ├── manualRenumber │ │ │ ├── manualRenumber.cxx │ │ │ └── manualRenumber.hxx │ │ ├── randomRenumber │ │ │ ├── randomRenumber.cxx │ │ │ └── randomRenumber.hxx │ │ ├── renumberMethod │ │ │ ├── renumberMethod.cxx │ │ │ └── renumberMethod.hxx │ │ ├── springRenumber │ │ │ ├── springRenumber.cxx │ │ │ └── springRenumber.hxx │ │ └── structuredRenumber │ │ │ ├── OppositeFaceCellWave.cxx-backup │ │ │ ├── OppositeFaceCellWave.hxx │ │ │ ├── OppositeFaceCellWaveI.hxx │ │ │ ├── OppositeFaceCellWaveName.cxx │ │ │ ├── structuredRenumber.cxx │ │ │ └── structuredRenumber.hxx │ │ └── zoltanRenumber │ │ ├── zoltanRenumber.cxx │ │ └── zoltanRenumber.hxx ├── TnbRenumber.vcxproj ├── TnbRenumber.vcxproj.filters └── include │ ├── CuthillMcKeeRenumber.hxx │ ├── OppositeFaceCellWave.hxx │ ├── OppositeFaceCellWaveI.hxx │ ├── Renumber_Module.hxx │ ├── SloanRenumber.hxx │ ├── manualRenumber.hxx │ ├── randomRenumber.hxx │ ├── renumberMethod.hxx │ ├── springRenumber.hxx │ ├── structuredRenumber.hxx │ └── zoltanRenumber.hxx ├── TnbRigidBodyMotion ├── TnbLib │ ├── module │ │ └── RigidBodyMotion_Module.hxx │ ├── rigidBodyDynamics │ │ ├── bodies │ │ │ ├── compositeBody │ │ │ │ ├── compositeBody.cxx │ │ │ │ ├── compositeBody.hxx │ │ │ │ └── compositeBodyI.hxx │ │ │ ├── cuboid │ │ │ │ ├── cuboid.cxx │ │ │ │ ├── cuboid.hxx │ │ │ │ └── cuboidI.hxx │ │ │ ├── jointBody │ │ │ │ ├── jointBody.cxx │ │ │ │ ├── jointBody.hxx │ │ │ │ └── jointBodyI.hxx │ │ │ ├── masslessBody │ │ │ │ ├── masslessBody.cxx │ │ │ │ ├── masslessBody.hxx │ │ │ │ └── masslessBodyI.hxx │ │ │ ├── rigidBody │ │ │ │ ├── rigidBody.cxx │ │ │ │ ├── rigidBody.hxx │ │ │ │ └── rigidBodyI.hxx │ │ │ ├── sphere │ │ │ │ ├── sphere.cxx │ │ │ │ ├── sphere.hxx │ │ │ │ └── sphereI.hxx │ │ │ └── subBody │ │ │ │ ├── subBody.cxx │ │ │ │ ├── subBody.hxx │ │ │ │ └── subBodyI.hxx │ │ ├── joints │ │ │ ├── Pa │ │ │ │ ├── Pa.cxx │ │ │ │ └── Pa.hxx │ │ │ ├── Px │ │ │ │ ├── Px.cxx │ │ │ │ └── Px.hxx │ │ │ ├── Pxyz │ │ │ │ ├── Pxyz.cxx │ │ │ │ └── Pxyz.hxx │ │ │ ├── Py │ │ │ │ ├── Py.cxx │ │ │ │ └── Py.hxx │ │ │ ├── Pz │ │ │ │ ├── Pz.cxx │ │ │ │ └── Pz.hxx │ │ │ ├── Ra │ │ │ │ ├── Ra.cxx │ │ │ │ └── Ra.hxx │ │ │ ├── Rs │ │ │ │ ├── Rs.cxx │ │ │ │ └── Rs.hxx │ │ │ ├── Rx │ │ │ │ ├── Rx.cxx │ │ │ │ └── Rx.hxx │ │ │ ├── Rxyz │ │ │ │ ├── Rxyz.cxx │ │ │ │ └── Rxyz.hxx │ │ │ ├── Ry │ │ │ │ ├── Ry.cxx │ │ │ │ └── Ry.hxx │ │ │ ├── Ryxz │ │ │ │ ├── Ryxz.cxx │ │ │ │ └── Ryxz.hxx │ │ │ ├── Rz │ │ │ │ ├── Rz.cxx │ │ │ │ └── Rz.hxx │ │ │ ├── Rzyx │ │ │ │ ├── Rzyx.cxx │ │ │ │ └── Rzyx.hxx │ │ │ ├── composite │ │ │ │ ├── compositeJoint.cxx │ │ │ │ └── compositeJoint.hxx │ │ │ ├── floating │ │ │ │ ├── floatingJoint.cxx │ │ │ │ └── floatingJoint.hxx │ │ │ ├── function │ │ │ │ ├── function.cxx │ │ │ │ └── function.hxx │ │ │ ├── functionDot │ │ │ │ ├── functionDot.cxx │ │ │ │ └── functionDot.hxx │ │ │ ├── joint │ │ │ │ ├── joint.cxx │ │ │ │ ├── joint.hxx │ │ │ │ └── jointI.hxx │ │ │ ├── joints.hxx │ │ │ ├── null │ │ │ │ ├── nullJoint.cxx │ │ │ │ └── nullJoint.hxx │ │ │ └── rigid │ │ │ │ ├── rigid.cxx │ │ │ │ └── rigid.hxx │ │ ├── restraints │ │ │ ├── linearAxialAngularSpring │ │ │ │ ├── linearAxialAngularSpring.cxx │ │ │ │ └── linearAxialAngularSpring.hxx │ │ │ ├── linearDamper │ │ │ │ ├── linearDamper.cxx │ │ │ │ └── linearDamper.hxx │ │ │ ├── linearSpring │ │ │ │ ├── linearSpring.cxx │ │ │ │ └── linearSpring.hxx │ │ │ ├── restraint │ │ │ │ ├── rigidBodyRestraint.cxx │ │ │ │ ├── rigidBodyRestraint.hxx │ │ │ │ ├── rigidBodyRestraintI.hxx │ │ │ │ └── rigidBodyRestraintNew.cxx │ │ │ └── sphericalAngularDamper │ │ │ │ ├── sphericalAngularDamper.cxx │ │ │ │ └── sphericalAngularDamper.hxx │ │ ├── rigidBodyInertia │ │ │ ├── rigidBodyInertia.hxx │ │ │ └── rigidBodyInertiaI.hxx │ │ ├── rigidBodyModel │ │ │ ├── forwardDynamics.cxx │ │ │ ├── rigidBodyModel.cxx │ │ │ ├── rigidBodyModel.hxx │ │ │ └── rigidBodyModelI.hxx │ │ ├── rigidBodyModelState │ │ │ ├── rigidBodyModelState.cxx │ │ │ ├── rigidBodyModelState.hxx │ │ │ ├── rigidBodyModelStateI.hxx │ │ │ └── rigidBodyModelStateIO.cxx │ │ ├── rigidBodyMotion │ │ │ ├── rigidBodyMotion.cxx │ │ │ ├── rigidBodyMotion.hxx │ │ │ ├── rigidBodyMotionI.hxx │ │ │ └── rigidBodyMotionIO.cxx │ │ └── rigidBodySolvers │ │ │ ├── CrankNicolson │ │ │ ├── CrankNicolson.cxx │ │ │ └── CrankNicolson.hxx │ │ │ ├── Newmark │ │ │ ├── Newmark.cxx │ │ │ └── Newmark.hxx │ │ │ ├── rigidBodySolver │ │ │ ├── newRigidBodySolver.cxx │ │ │ ├── rigidBodySolver.cxx │ │ │ ├── rigidBodySolver.hxx │ │ │ └── rigidBodySolverI.hxx │ │ │ └── symplectic │ │ │ ├── symplectic.cxx │ │ │ └── symplectic.hxx │ ├── rigidBodyMeshMotion │ │ ├── rigidBodyMeshMotion │ │ │ ├── rigidBodyMeshMotion.cxx │ │ │ └── rigidBodyMeshMotion.hxx │ │ └── rigidBodyMeshMotionSolver │ │ │ ├── rigidBodyMeshMotionSolver.cxx │ │ │ └── rigidBodyMeshMotionSolver.hxx │ ├── rigidBodyState │ │ ├── rigidBodyState.cxx │ │ └── rigidBodyState.hxx │ ├── sixDoFRigidBodyMotion │ │ ├── sixDoFRigidBodyMotion │ │ │ ├── constraints │ │ │ │ ├── axis │ │ │ │ │ ├── sixDoFRigidBodyMotionAxisConstraint.cxx │ │ │ │ │ └── sixDoFRigidBodyMotionAxisConstraint.hxx │ │ │ │ ├── line │ │ │ │ │ ├── sixDoFRigidBodyMotionLineConstraint.cxx │ │ │ │ │ └── sixDoFRigidBodyMotionLineConstraint.hxx │ │ │ │ ├── orientation │ │ │ │ │ ├── sixDoFRigidBodyMotionOrientationConstraint.cxx │ │ │ │ │ └── sixDoFRigidBodyMotionOrientationConstraint.hxx │ │ │ │ ├── plane │ │ │ │ │ ├── sixDoFRigidBodyMotionPlaneConstraint.cxx │ │ │ │ │ └── sixDoFRigidBodyMotionPlaneConstraint.hxx │ │ │ │ ├── point │ │ │ │ │ ├── sixDoFRigidBodyMotionPointConstraint.cxx │ │ │ │ │ └── sixDoFRigidBodyMotionPointConstraint.hxx │ │ │ │ └── sixDoFRigidBodyMotionConstraint │ │ │ │ │ ├── sixDoFRigidBodyMotionConstraint.cxx │ │ │ │ │ ├── sixDoFRigidBodyMotionConstraint.hxx │ │ │ │ │ └── sixDoFRigidBodyMotionConstraintNew.cxx │ │ │ ├── restraints │ │ │ │ ├── linearAxialAngularSpring │ │ │ │ │ ├── sixDoFLinearAxialAngularSpring.cxx │ │ │ │ │ └── sixDoFLinearAxialAngularSpring.hxx │ │ │ │ ├── linearDamper │ │ │ │ │ ├── sixDoFLinearDamper.cxx │ │ │ │ │ └── sixDoFLinearDamper.hxx │ │ │ │ ├── linearSpring │ │ │ │ │ ├── sixDoFLinearSpring.cxx │ │ │ │ │ └── sixDoFLinearSpring.hxx │ │ │ │ ├── sixDoFRigidBodyMotionRestraint │ │ │ │ │ ├── sixDoFRigidBodyMotionRestraint.cxx │ │ │ │ │ ├── sixDoFRigidBodyMotionRestraint.hxx │ │ │ │ │ └── sixDoFRigidBodyMotionRestraintNew.cxx │ │ │ │ ├── sphericalAngularDamper │ │ │ │ │ ├── sixDoFSphericalAngularDamper.cxx │ │ │ │ │ └── sixDoFSphericalAngularDamper.hxx │ │ │ │ ├── sphericalAngularSpring │ │ │ │ │ ├── sixDoFSphericalAngularSpring.cxx │ │ │ │ │ └── sixDoFSphericalAngularSpring.hxx │ │ │ │ └── tabulatedAxialAngularSpring │ │ │ │ │ ├── sixDoFTabulatedAxialAngularSpring.cxx │ │ │ │ │ └── sixDoFTabulatedAxialAngularSpring.hxx │ │ │ ├── sixDoFRigidBodyMotion.cxx │ │ │ ├── sixDoFRigidBodyMotion.hxx │ │ │ ├── sixDoFRigidBodyMotionI.hxx │ │ │ ├── sixDoFRigidBodyMotionState.cxx │ │ │ ├── sixDoFRigidBodyMotionState.hxx │ │ │ ├── sixDoFRigidBodyMotionStateI.hxx │ │ │ └── sixDoFRigidBodyMotionStateIO.cxx │ │ ├── sixDoFRigidBodyMotionSolver │ │ │ ├── sixDoFRigidBodyMotionSolver.cxx │ │ │ └── sixDoFRigidBodyMotionSolver.hxx │ │ └── sixDoFSolvers │ │ │ ├── CrankNicolson │ │ │ ├── CrankNicolsonSixDoFSolver.cxx │ │ │ └── CrankNicolsonSixDoFSolver.hxx │ │ │ ├── Newmark │ │ │ ├── NewmarkSixDoFSolver.cxx │ │ │ └── NewmarkSixDoFSolver.hxx │ │ │ ├── sixDoFSolver │ │ │ ├── newSixDoFSolver.cxx │ │ │ ├── sixDoFSolver.cxx │ │ │ ├── sixDoFSolver.hxx │ │ │ └── sixDoFSolverI.hxx │ │ │ └── symplectic │ │ │ ├── symplecticSixDoFSolver.cxx │ │ │ └── symplecticSixDoFSolver.hxx │ └── sixDoFRigidBodyState │ │ ├── sixDoFRigidBodyControl │ │ ├── sixDoFRigidBodyControl.cxx │ │ └── sixDoFRigidBodyControl.hxx │ │ └── sixDoFRigidBodyState │ │ ├── sixDoFRigidBodyState.cxx │ │ └── sixDoFRigidBodyState.hxx ├── TnbRigidBodyMotion.vcxproj ├── TnbRigidBodyMotion.vcxproj.filters └── include │ ├── CrankNicolson.hxx │ ├── CrankNicolsonSixDoFSolver.hxx │ ├── Newmark.hxx │ ├── NewmarkSixDoFSolver.hxx │ ├── Pa.hxx │ ├── Px.hxx │ ├── Pxyz.hxx │ ├── Py.hxx │ ├── Pz.hxx │ ├── Ra.hxx │ ├── RigidBodyMotion_Module.hxx │ ├── Rs.hxx │ ├── Rx.hxx │ ├── Rxyz.hxx │ ├── Ry.hxx │ ├── Ryxz.hxx │ ├── Rz.hxx │ ├── Rzyx.hxx │ ├── compositeBody.hxx │ ├── compositeBodyI.hxx │ ├── compositeJoint.hxx │ ├── cuboid.hxx │ ├── cuboidI.hxx │ ├── floatingJoint.hxx │ ├── function.hxx │ ├── functionDot.hxx │ ├── joint.hxx │ ├── jointBody.hxx │ ├── jointBodyI.hxx │ ├── jointI.hxx │ ├── joints.hxx │ ├── linearAxialAngularSpring.hxx │ ├── linearDamper.hxx │ ├── linearSpring.hxx │ ├── masslessBody.hxx │ ├── masslessBodyI.hxx │ ├── nullJoint.hxx │ ├── rigid.hxx │ ├── rigidBody.hxx │ ├── rigidBodyI.hxx │ ├── rigidBodyInertia.hxx │ ├── rigidBodyInertiaI.hxx │ ├── rigidBodyMeshMotion.hxx │ ├── rigidBodyMeshMotionSolver.hxx │ ├── rigidBodyModel.hxx │ ├── rigidBodyModelI.hxx │ ├── rigidBodyModelState.hxx │ ├── rigidBodyModelStateI.hxx │ ├── rigidBodyMotion.hxx │ ├── rigidBodyMotionI.hxx │ ├── rigidBodyRestraint.hxx │ ├── rigidBodyRestraintI.hxx │ ├── rigidBodySolver.hxx │ ├── rigidBodySolverI.hxx │ ├── rigidBodyState.hxx │ ├── sixDoFLinearAxialAngularSpring.hxx │ ├── sixDoFLinearDamper.hxx │ ├── sixDoFLinearSpring.hxx │ ├── sixDoFRigidBodyControl.hxx │ ├── sixDoFRigidBodyMotion.hxx │ ├── sixDoFRigidBodyMotionAxisConstraint.hxx │ ├── sixDoFRigidBodyMotionConstraint.hxx │ ├── sixDoFRigidBodyMotionI.hxx │ ├── sixDoFRigidBodyMotionLineConstraint.hxx │ ├── sixDoFRigidBodyMotionOrientationConstraint.hxx │ ├── sixDoFRigidBodyMotionPlaneConstraint.hxx │ ├── sixDoFRigidBodyMotionPointConstraint.hxx │ ├── sixDoFRigidBodyMotionRestraint.hxx │ ├── sixDoFRigidBodyMotionSolver.hxx │ ├── sixDoFRigidBodyMotionState.hxx │ ├── sixDoFRigidBodyMotionStateI.hxx │ ├── sixDoFRigidBodyState.hxx │ ├── sixDoFSolver.hxx │ ├── sixDoFSolverI.hxx │ ├── sixDoFSphericalAngularDamper.hxx │ ├── sixDoFSphericalAngularSpring.hxx │ ├── sixDoFTabulatedAxialAngularSpring.hxx │ ├── sphere.hxx │ ├── sphereI.hxx │ ├── sphericalAngularDamper.hxx │ ├── subBody.hxx │ ├── subBodyI.hxx │ ├── symplectic.hxx │ └── symplecticSixDoFSolver.hxx ├── TnbSampling ├── TnbLib │ └── sampling │ │ ├── cuttingPlane │ │ ├── cuttingPlane.cxx │ │ ├── cuttingPlane.hxx │ │ ├── cuttingPlaneI.hxx │ │ └── cuttingPlaneTemplates.cxx-backup │ │ ├── graphField │ │ ├── makeGraph.cxx │ │ ├── makeGraph.hxx │ │ ├── writeCellGraph.cxx │ │ ├── writeCellGraph.hxx │ │ ├── writePatchGraph.cxx │ │ └── writePatchGraph.hxx │ │ ├── meshToMesh │ │ ├── calcMethod │ │ │ ├── cellVolumeWeight │ │ │ │ ├── cellVolumeWeightMethod.cxx │ │ │ │ └── cellVolumeWeightMethod.hxx │ │ │ ├── direct │ │ │ │ ├── directMethod.cxx │ │ │ │ └── directMethod.hxx │ │ │ ├── mapNearest │ │ │ │ ├── mapNearestMethod.cxx │ │ │ │ └── mapNearestMethod.hxx │ │ │ └── meshToMeshMethod │ │ │ │ ├── meshToMeshMethod.cxx │ │ │ │ ├── meshToMeshMethod.hxx │ │ │ │ ├── meshToMeshMethodI.hxx │ │ │ │ └── meshToMeshMethodNew.cxx │ │ ├── distributedWeightedFvPatchFieldMapper.cxx │ │ ├── distributedWeightedFvPatchFieldMapper.hxx │ │ ├── distributedWeightedFvPatchFieldMapperI.hxx │ │ ├── distributedWeightedFvPatchFieldMapperTemplates.cxx-backup │ │ ├── meshToMesh.cxx │ │ ├── meshToMesh.hxx │ │ ├── meshToMeshI.hxx │ │ ├── meshToMeshParallelOps.cxx │ │ ├── meshToMeshTemplates.cxx-backup │ │ ├── meshToMeshTemplatesI.hxx │ │ └── weightedFvPatchFieldMapper.hxx │ │ ├── meshToMesh0 │ │ ├── calculateMeshToMesh0Addressing.cxx │ │ ├── calculateMeshToMesh0Weights.cxx │ │ ├── meshToMesh0.cxx │ │ ├── meshToMesh0.hxx │ │ ├── meshToMesh0I.hxx │ │ └── meshToMesh0Templates.cxx-backup │ │ ├── module │ │ └── Sampling_Module.hxx │ │ ├── probes │ │ ├── IOprobes.hxx │ │ ├── patchProbes.cxx │ │ ├── patchProbes.hxx │ │ ├── patchProbesI.hxx │ │ ├── patchProbesTemplates.cxx-backup │ │ ├── probes.cxx │ │ ├── probes.hxx │ │ ├── probesDict │ │ ├── probesGrouping.cxx │ │ ├── probesI.hxx │ │ ├── probesIsNotEqOp.h │ │ └── probesTemplates.cxx-backup │ │ ├── sampledSet │ │ ├── arcUniform │ │ │ ├── arcUniform.cxx │ │ │ └── arcUniform.hxx │ │ ├── boundaryPoints │ │ │ ├── boundaryPoints.cxx │ │ │ └── boundaryPoints.hxx │ │ ├── boundaryRandom │ │ │ ├── boundaryRandom.cxx │ │ │ └── boundaryRandom.hxx │ │ ├── boxUniform │ │ │ ├── boxUniform.cxx │ │ │ └── boxUniform.hxx │ │ ├── circleRandom │ │ │ ├── circleRandom.cxx │ │ │ └── circleRandom.hxx │ │ ├── lineCell │ │ │ ├── lineCell.cxx │ │ │ └── lineCell.hxx │ │ ├── lineCellFace │ │ │ ├── lineCellFace.cxx │ │ │ └── lineCellFace.hxx │ │ ├── lineFace │ │ │ ├── lineFace.cxx │ │ │ └── lineFace.hxx │ │ ├── lineUniform │ │ │ ├── lineUniform.cxx │ │ │ └── lineUniform.hxx │ │ ├── points │ │ │ ├── points.cxx │ │ │ └── points.hxx │ │ ├── sampledSet │ │ │ ├── sampledSet.cxx │ │ │ └── sampledSet.hxx │ │ ├── sampledSets │ │ │ ├── IOsampledSets.hxx │ │ │ ├── sampledSets.cxx │ │ │ ├── sampledSets.hxx │ │ │ ├── sampledSetsGrouping.cxx │ │ │ ├── sampledSetsI.hxx │ │ │ └── sampledSetsTemplates.cxx-backup │ │ ├── sphereRandom │ │ │ ├── sphereRandom.cxx │ │ │ └── sphereRandom.hxx │ │ └── triSurfaceMeshSampledSet │ │ │ ├── triSurfaceMeshSampledSet.cxx │ │ │ └── triSurfaceMeshSampledSet.hxx │ │ └── sampledSurface │ │ ├── distanceSurface │ │ ├── distanceSurface.cxx │ │ ├── distanceSurface.hxx │ │ ├── distanceSurfaceI.hxx │ │ └── distanceSurfaceTemplates.cxx-backup │ │ ├── isoSurface │ │ ├── isoSurface.cxx │ │ ├── isoSurface.hxx │ │ ├── isoSurfaceI.hxx │ │ ├── isoSurfaceTemplates.cxx-backup │ │ ├── sampledIsoSurface.cxx │ │ ├── sampledIsoSurface.hxx │ │ ├── sampledIsoSurfaceI.hxx │ │ └── sampledIsoSurfaceTemplates.cxx-backup │ │ ├── sampledCuttingPlane │ │ ├── sampledCuttingPlane.cxx │ │ ├── sampledCuttingPlane.hxx │ │ ├── sampledCuttingPlaneI.hxx │ │ └── sampledCuttingPlaneTemplates.cxx-backup │ │ ├── sampledPatch │ │ ├── sampledPatch.cxx │ │ ├── sampledPatch.hxx │ │ ├── sampledPatchI.hxx │ │ └── sampledPatchTemplates.cxx-backup │ │ ├── sampledPatchInternalField │ │ ├── sampledPatchInternalField.cxx │ │ ├── sampledPatchInternalField.hxx │ │ ├── sampledPatchInternalFieldI.hxx │ │ └── sampledPatchInternalFieldTemplates.cxx-backup │ │ ├── sampledPlane │ │ ├── sampledPlane.cxx │ │ ├── sampledPlane.hxx │ │ ├── sampledPlaneI.hxx │ │ └── sampledPlaneTemplates.cxx-backup │ │ ├── sampledSurface │ │ ├── sampledSurface.cxx │ │ ├── sampledSurface.hxx │ │ ├── sampledSurfaceI.hxx │ │ └── sampledSurfaceTemplates.cxx-backup │ │ ├── sampledSurfaces │ │ ├── IOsampledSurfaces.hxx │ │ ├── sampledSurfaces.cxx │ │ ├── sampledSurfaces.hxx │ │ ├── sampledSurfacesGrouping.cxx │ │ ├── sampledSurfacesI.hxx │ │ └── sampledSurfacesTemplates.cxx-backup │ │ ├── sampledTriSurfaceMesh │ │ ├── sampledTriSurfaceMesh.cxx │ │ ├── sampledTriSurfaceMesh.hxx │ │ ├── sampledTriSurfaceMeshI.hxx │ │ └── sampledTriSurfaceMeshTemplates.cxx-backup │ │ └── thresholdCellFaces │ │ ├── sampledThresholdCellFaces.cxx │ │ ├── sampledThresholdCellFaces.hxx │ │ ├── sampledThresholdCellFacesI.hxx │ │ ├── sampledThresholdCellFacesTemplates.cxx-backup │ │ ├── thresholdCellFaces.cxx │ │ └── thresholdCellFaces.hxx ├── TnbSampling.vcxproj ├── TnbSampling.vcxproj.filters ├── cpp.hint └── include │ ├── IOprobes.hxx │ ├── IOsampledSets.hxx │ ├── IOsampledSurfaces.hxx │ ├── Sampling_Module.hxx │ ├── arcUniform.hxx │ ├── boundaryPoints.hxx │ ├── boundaryRandom.hxx │ ├── boxUniform.hxx │ ├── cellVolumeWeightMethod.hxx │ ├── circleRandom.hxx │ ├── cuttingPlane.hxx │ ├── cuttingPlaneI.hxx │ ├── directMethod.hxx │ ├── distanceSurface.hxx │ ├── distanceSurfaceI.hxx │ ├── distributedWeightedFvPatchFieldMapper.hxx │ ├── distributedWeightedFvPatchFieldMapperI.hxx │ ├── ensightPTraits.hxx │ ├── ensightSurfaceWriter.hxx │ ├── foamSurfaceWriter.hxx │ ├── isoSurface.hxx │ ├── isoSurfaceI.hxx │ ├── lineCell.hxx │ ├── lineCellFace.hxx │ ├── lineFace.hxx │ ├── lineUniform.hxx │ ├── makeGraph.hxx │ ├── makeSurfaceWriterMethods.hxx │ ├── mapNearestMethod.hxx │ ├── meshToMesh.hxx │ ├── meshToMesh0.hxx │ ├── meshToMesh0I.hxx │ ├── meshToMeshI.hxx │ ├── meshToMeshMethod.hxx │ ├── meshToMeshMethodI.hxx │ ├── meshToMeshTemplatesI.hxx │ ├── nastranSurfaceWriter.hxx │ ├── noSurfaceWriter.hxx │ ├── patchProbes.hxx │ ├── patchProbesI.hxx │ ├── points.hxx │ ├── probes.hxx │ ├── probesI.hxx │ ├── proxySurfaceWriter.hxx │ ├── rawSurfaceWriter.hxx │ ├── sampledCuttingPlane.hxx │ ├── sampledCuttingPlaneI.hxx │ ├── sampledIsoSurface.hxx │ ├── sampledIsoSurfaceI.hxx │ ├── sampledPatch.hxx │ ├── sampledPatchI.hxx │ ├── sampledPatchInternalField.hxx │ ├── sampledPatchInternalFieldI.hxx │ ├── sampledPlane.hxx │ ├── sampledPlaneI.hxx │ ├── sampledSet.hxx │ ├── sampledSets.hxx │ ├── sampledSetsI.hxx │ ├── sampledSetsTemplatesI.hxx │ ├── sampledSurface.hxx │ ├── sampledSurfaceI.hxx │ ├── sampledSurfaces.hxx │ ├── sampledSurfacesI.hxx │ ├── sampledThresholdCellFaces.hxx │ ├── sampledThresholdCellFacesI.hxx │ ├── sampledTriSurfaceMesh.hxx │ ├── sampledTriSurfaceMeshI.hxx │ ├── sphereRandom.hxx │ ├── starcdSurfaceWriter.hxx │ ├── surfaceWriter.hxx │ ├── thresholdCellFaces.hxx │ ├── triSurfaceMeshSampledSet.hxx │ ├── vtkSurfaceWriter.hxx │ ├── weightedFvPatchFieldMapper.hxx │ ├── writeCellGraph.hxx │ └── writePatchGraph.hxx ├── TnbSnappyHexMesh ├── TnbLib │ └── snappyHexMesh │ │ ├── externalDisplacementMeshMover │ │ ├── displacementMeshMoverMotionSolver.cxx │ │ ├── displacementMeshMoverMotionSolver.hxx │ │ ├── externalDisplacementMeshMover.cxx │ │ ├── externalDisplacementMeshMover.hxx │ │ ├── medialAxisMeshMover.cxx │ │ ├── medialAxisMeshMover.hxx │ │ └── zeroFixedValue │ │ │ ├── zeroFixedValuePointPatchField.cxx │ │ │ ├── zeroFixedValuePointPatchField.hxx │ │ │ ├── zeroFixedValuePointPatchFieldI.hxx │ │ │ ├── zeroFixedValuePointPatchFields.cxx │ │ │ └── zeroFixedValuePointPatchFields.hxx │ │ ├── meshRefinement │ │ ├── meshRefinement.cxx │ │ ├── meshRefinement.hxx │ │ ├── meshRefinementBaffles.cxx │ │ ├── meshRefinementMerge.cxx │ │ ├── meshRefinementProblemCells.cxx │ │ ├── meshRefinementRefine.cxx │ │ ├── meshRefinementTemplates.cxx │ │ ├── meshRefinementTemplatesI.hxx │ │ ├── patchFaceOrientation.cxx │ │ ├── patchFaceOrientation.hxx │ │ └── patchFaceOrientationI.hxx │ │ ├── module │ │ └── SnappyHexMesh_Module.hxx │ │ ├── refinementFeatures │ │ ├── refinementFeatures.cxx │ │ └── refinementFeatures.hxx │ │ ├── refinementSurfaces │ │ ├── refinementSurfaces.cxx │ │ ├── refinementSurfaces.hxx │ │ ├── surfaceZonesInfo.cxx │ │ └── surfaceZonesInfo.hxx │ │ ├── shellSurfaces │ │ ├── shellSurfaces.cxx │ │ └── shellSurfaces.hxx │ │ ├── snappyHexMeshDriver │ │ ├── layerParameters │ │ │ ├── layerParameters.cxx │ │ │ └── layerParameters.hxx │ │ ├── pointData │ │ │ ├── pointData.cxx │ │ │ ├── pointData.hxx │ │ │ └── pointDataI.hxx │ │ ├── refinementParameters │ │ │ ├── refinementParameters.cxx │ │ │ └── refinementParameters.hxx │ │ ├── snapParameters │ │ │ ├── snapParameters.cxx │ │ │ └── snapParameters.hxx │ │ ├── snappyLayerDriver.cxx │ │ ├── snappyLayerDriver.hxx │ │ ├── snappyLayerDriverShrink.cxx │ │ ├── snappyLayerDriverTemplates.cxx │ │ ├── snappyLayerDriverTemplates.hxx │ │ ├── snappyRefineDriver.cxx │ │ ├── snappyRefineDriver.hxx │ │ ├── snappySnapDriver.cxx │ │ ├── snappySnapDriver.hxx │ │ └── snappySnapDriverFeature.cxx │ │ └── trackedParticle │ │ ├── trackedParticle.cxx │ │ ├── trackedParticle.hxx │ │ └── trackedParticleCloud.cxx ├── TnbSnappyHexMesh.vcxproj ├── TnbSnappyHexMesh.vcxproj.filters ├── cpp.hint └── include │ ├── SnappyHexMesh_Module.hxx │ ├── displacementMeshMoverMotionSolver.hxx │ ├── externalDisplacementMeshMover.hxx │ ├── layerParameters.hxx │ ├── medialAxisMeshMover.hxx │ ├── meshRefinement.hxx │ ├── meshRefinementTemplatesI.hxx │ ├── patchFaceOrientation.hxx │ ├── patchFaceOrientationI.hxx │ ├── pointData.hxx │ ├── pointDataI.hxx │ ├── refinementFeatures.hxx │ ├── refinementParameters.hxx │ ├── refinementSurfaces.hxx │ ├── shellSurfaces.hxx │ ├── snapParameters.hxx │ ├── snappyLayerDriver.hxx │ ├── snappyLayerDriverTemplates.hxx │ ├── snappyRefineDriver.hxx │ ├── snappySnapDriver.hxx │ ├── surfaceZonesInfo.hxx │ ├── trackedParticle.hxx │ ├── zeroFixedValuePointPatchField.hxx │ ├── zeroFixedValuePointPatchFieldI.hxx │ └── zeroFixedValuePointPatchFields.hxx ├── TnbThermoPhysicalModels ├── TnbLib │ └── thermophysicalModels │ │ ├── Allwmake │ │ ├── SLGThermo │ │ └── SLGThermo │ │ │ ├── SLGThermo.cxx │ │ │ └── SLGThermo.hxx │ │ ├── barotropicCompressibilityModel │ │ ├── Chung │ │ │ ├── Chung.cxx │ │ │ └── Chung.hxx │ │ ├── Wallis │ │ │ ├── Wallis.cxx │ │ │ └── Wallis.hxx │ │ ├── barotropicCompressibilityModel │ │ │ ├── barotropicCompressibilityModel.cxx │ │ │ ├── barotropicCompressibilityModel.hxx │ │ │ └── barotropicCompressibilityModelNew.cxx │ │ └── linear │ │ │ ├── linearBarotropicCompressibilityModel.cxx │ │ │ └── linearBarotropicCompressibilityModel.hxx │ │ ├── basic │ │ ├── basicThermo │ │ │ ├── basicThermo.cxx │ │ │ ├── basicThermo.hxx │ │ │ ├── basicThermoI.hxx │ │ │ ├── basicThermoTemplates.cxx-backup │ │ │ └── makeThermo.hxx │ │ ├── derivedFvPatchFields │ │ │ ├── energyJump │ │ │ │ ├── energyJump │ │ │ │ │ ├── energyJumpFvPatchScalarField.cxx │ │ │ │ │ └── energyJumpFvPatchScalarField.hxx │ │ │ │ └── energyJumpAMI │ │ │ │ │ ├── energyJumpAMIFvPatchScalarField.cxx │ │ │ │ │ └── energyJumpAMIFvPatchScalarField.hxx │ │ │ ├── fixedEnergy │ │ │ │ ├── fixedEnergyFvPatchScalarField.cxx │ │ │ │ └── fixedEnergyFvPatchScalarField.hxx │ │ │ ├── gradientEnergy │ │ │ │ ├── gradientEnergyFvPatchScalarField.cxx │ │ │ │ └── gradientEnergyFvPatchScalarField.hxx │ │ │ └── mixedEnergy │ │ │ │ ├── mixedEnergyFvPatchScalarField.cxx │ │ │ │ └── mixedEnergyFvPatchScalarField.hxx │ │ ├── fluidThermo │ │ │ ├── fluidThermo.cxx │ │ │ └── fluidThermo.hxx │ │ ├── heThermo │ │ │ ├── heThermo.cxx-backup │ │ │ ├── heThermo.hxx │ │ │ └── heThermoI.hxx │ │ ├── mixtures │ │ │ ├── basicMixture │ │ │ │ └── basicMixture.hxx │ │ │ └── pureMixture │ │ │ │ ├── pureMixture.cxx-backup │ │ │ │ ├── pureMixture.hxx │ │ │ │ └── pureMixtureI.hxx │ │ ├── psiThermo │ │ │ ├── hePsiThermo.cxx-backup │ │ │ ├── hePsiThermo.hxx │ │ │ ├── hePsiThermoI.hxx │ │ │ ├── psiThermo.cxx │ │ │ ├── psiThermo.hxx │ │ │ └── psiThermos.cxx │ │ └── rhoThermo │ │ │ ├── heRhoThermo.cxx-backup │ │ │ ├── heRhoThermo.hxx │ │ │ ├── heRhoThermoI.hxx │ │ │ ├── liquidThermo.cxx │ │ │ ├── liquidThermo.hxx │ │ │ ├── rhoThermo.cxx │ │ │ ├── rhoThermo.hxx │ │ │ └── rhoThermos.cxx │ │ ├── chemistryModel │ │ ├── chemistryModel │ │ │ ├── BasicChemistryModel │ │ │ │ ├── BasicChemistryModelTemplate.cxx-backup │ │ │ │ ├── BasicChemistryModelTemplate.hxx │ │ │ │ ├── BasicChemistryModelTemplateI.hxx │ │ │ │ ├── BasicChemistryModelTemplate_Imp.hxx │ │ │ │ ├── BasicChemistryModels.cxx │ │ │ │ ├── basicChemistryModel.cxx │ │ │ │ ├── basicChemistryModel.hxx │ │ │ │ ├── basicChemistryModelI.hxx │ │ │ │ ├── basicChemistryModelTemplates.cxx-backup │ │ │ │ └── basicChemistryModelTemplates_Imp.hxx │ │ │ ├── StandardChemistryModel │ │ │ │ ├── StandardChemistryModel.cxx-backup │ │ │ │ ├── StandardChemistryModel.hxx │ │ │ │ ├── StandardChemistryModelI.hxx │ │ │ │ └── StandardChemistryModel_Imp.hxx │ │ │ ├── TDACChemistryModel │ │ │ │ ├── TDACChemistryModel.cxx-backup │ │ │ │ ├── TDACChemistryModel.hxx │ │ │ │ ├── TDACChemistryModelI.hxx │ │ │ │ ├── TDACChemistryModel_Imp.hxx │ │ │ │ ├── reduction │ │ │ │ │ ├── DAC │ │ │ │ │ │ ├── DAC.cxx-backup │ │ │ │ │ │ ├── DAC.hxx │ │ │ │ │ │ └── DACI.hxx │ │ │ │ │ ├── DRG │ │ │ │ │ │ ├── DRG.cxx-backup │ │ │ │ │ │ ├── DRG.hxx │ │ │ │ │ │ └── DRGI.hxx │ │ │ │ │ ├── DRGEP │ │ │ │ │ │ ├── DRGEP.cxx-backup │ │ │ │ │ │ ├── DRGEP.hxx │ │ │ │ │ │ ├── DRGEPI.hxx │ │ │ │ │ │ ├── SortableListDRGEP.cxx-backup │ │ │ │ │ │ ├── SortableListDRGEP.hxx │ │ │ │ │ │ └── SortableListDRGEPI.hxx │ │ │ │ │ ├── EFA │ │ │ │ │ │ ├── EFA.cxx-backup │ │ │ │ │ │ ├── EFA.hxx │ │ │ │ │ │ ├── EFAI.hxx │ │ │ │ │ │ ├── SortableListEFA.cxx-backup │ │ │ │ │ │ ├── SortableListEFA.hxx │ │ │ │ │ │ └── SortableListEFAI.hxx │ │ │ │ │ ├── PFA │ │ │ │ │ │ ├── PFA.cxx-backup │ │ │ │ │ │ ├── PFA.hxx │ │ │ │ │ │ └── PFAI.hxx │ │ │ │ │ ├── chemistryReductionMethod │ │ │ │ │ │ ├── chemistryReductionMethod.cxx-backup │ │ │ │ │ │ ├── chemistryReductionMethod.hxx │ │ │ │ │ │ ├── chemistryReductionMethodI.hxx │ │ │ │ │ │ ├── chemistryReductionMethodNew.cxx-backup │ │ │ │ │ │ ├── chemistryReductionMethodNew_Imp.hxx │ │ │ │ │ │ └── chemistryReductionMethod_Imp.hxx │ │ │ │ │ ├── makeChemistryReductionMethods.cxx │ │ │ │ │ ├── makeChemistryReductionMethods.hxx │ │ │ │ │ └── noChemistryReduction │ │ │ │ │ │ ├── noChemistryReduction.cxx-backup │ │ │ │ │ │ ├── noChemistryReduction.hxx │ │ │ │ │ │ └── noChemistryReductionI.hxx │ │ │ │ └── tabulation │ │ │ │ │ ├── ISAT │ │ │ │ │ ├── ISAT.cxx-backup │ │ │ │ │ ├── ISAT.hxx │ │ │ │ │ ├── ISATI.hxx │ │ │ │ │ ├── binaryNode │ │ │ │ │ │ ├── binaryNode.cxx-backup │ │ │ │ │ │ ├── binaryNode.hxx │ │ │ │ │ │ └── binaryNodeI.hxx │ │ │ │ │ ├── binaryTree │ │ │ │ │ │ ├── binaryTree.cxx-backup │ │ │ │ │ │ ├── binaryTree.hxx │ │ │ │ │ │ └── binaryTreeI.hxx │ │ │ │ │ └── chemPointISAT │ │ │ │ │ │ ├── chemPointISAT.cxx-backup │ │ │ │ │ │ ├── chemPointISAT.hxx │ │ │ │ │ │ └── chemPointISATI.hxx │ │ │ │ │ ├── chemistryTabulationMethod │ │ │ │ │ ├── chemistryTabulationMethod.cxx-backup │ │ │ │ │ ├── chemistryTabulationMethod.hxx │ │ │ │ │ ├── chemistryTabulationMethodI.hxx │ │ │ │ │ ├── chemistryTabulationMethodNew.cxx-backup │ │ │ │ │ └── chemistryTabulationMethodNew_Imp.hxx │ │ │ │ │ ├── makeChemistryTabulationMethods.cxx │ │ │ │ │ ├── makeChemistryTabulationMethods.hxx │ │ │ │ │ └── noChemistryTabulation │ │ │ │ │ ├── noChemistryTabulation.cxx-backup │ │ │ │ │ ├── noChemistryTabulation.hxx │ │ │ │ │ └── noChemistryTabulationI.hxx │ │ │ └── makeChemistryModel.hxx │ │ ├── chemistrySolver │ │ │ ├── EulerImplicit │ │ │ │ ├── EulerImplicit.cxx-backup │ │ │ │ ├── EulerImplicit.hxx │ │ │ │ └── EulerImplicitI.hxx │ │ │ ├── chemistrySolver │ │ │ │ ├── chemistrySolver.cxx-backup │ │ │ │ ├── chemistrySolver.hxx │ │ │ │ ├── chemistrySolverI.hxx │ │ │ │ ├── makeChemistrySolverTypes.hxx │ │ │ │ └── makeChemistrySolvers.cxx │ │ │ ├── noChemistrySolver │ │ │ │ ├── noChemistrySolver.cxx-backup │ │ │ │ ├── noChemistrySolver.hxx │ │ │ │ └── noChemistrySolverI.hxx │ │ │ └── ode │ │ │ │ ├── ode.cxx-backup │ │ │ │ ├── ode.hxx │ │ │ │ └── odeI.hxx │ │ └── functionObjects │ │ │ └── specieReactionRates │ │ │ ├── specieReactionRates.cxx │ │ │ ├── specieReactionRates.hxx │ │ │ └── specieReactionRatesI.hxx │ │ ├── laminarFlameSpeed │ │ ├── Gulders │ │ │ ├── Gulders.cxx │ │ │ └── Gulders.hxx │ │ ├── GuldersEGR │ │ │ ├── GuldersEGR.cxx │ │ │ └── GuldersEGR.hxx │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── RaviPetersen │ │ │ ├── RaviPetersen.cxx │ │ │ └── RaviPetersen.hxx │ │ ├── constant │ │ │ ├── constLaminarFlameSpeed.cxx │ │ │ └── constLaminarFlameSpeed.hxx │ │ └── laminarFlameSpeed │ │ │ ├── laminarFlameSpeed.cxx │ │ │ ├── laminarFlameSpeed.hxx │ │ │ └── laminarFlameSpeedNew.cxx │ │ ├── module │ │ └── ThermophysicalModels_Module.hxx │ │ ├── reactionThermo │ │ ├── chemistryReaders │ │ │ ├── chemistryReader │ │ │ │ ├── chemistryReader.cxx-backup │ │ │ │ ├── chemistryReader.hxx │ │ │ │ ├── chemistryReaderI.hxx │ │ │ │ └── makeChemistryReaders.cxx │ │ │ ├── chemkinReader │ │ │ │ ├── chemkinLexer.L │ │ │ │ ├── chemkinLexer.cxx │ │ │ │ ├── chemkinReader.cxx │ │ │ │ ├── chemkinReader.hxx │ │ │ │ └── chemkinReaderI.hxx │ │ │ └── foamChemistryReader │ │ │ │ ├── foamChemistryReader.cxx-backup │ │ │ │ ├── foamChemistryReader.hxx │ │ │ │ └── foamChemistryReaderI.hxx │ │ ├── derivedFvPatchFields │ │ │ ├── fixedUnburntEnthalpy │ │ │ │ ├── fixedUnburntEnthalpyFvPatchScalarField.cxx │ │ │ │ └── fixedUnburntEnthalpyFvPatchScalarField.hxx │ │ │ ├── gradientUnburntEnthalpy │ │ │ │ ├── gradientUnburntEnthalpyFvPatchScalarField.cxx │ │ │ │ └── gradientUnburntEnthalpyFvPatchScalarField.hxx │ │ │ └── mixedUnburntEnthalpy │ │ │ │ ├── mixedUnburntEnthalpyFvPatchScalarField.cxx │ │ │ │ └── mixedUnburntEnthalpyFvPatchScalarField.hxx │ │ ├── functionObjects │ │ │ └── moleFractions │ │ │ │ ├── moleFractions.cxx-backup │ │ │ │ ├── moleFractions.hxx │ │ │ │ ├── moleFractionsFunctionObjects.cxx │ │ │ │ ├── moleFractionsFunctionObjects.hxx │ │ │ │ └── moleFractionsI.hxx │ │ ├── makeReactionThermo.hxx │ │ ├── mixtures │ │ │ ├── SpecieMixture │ │ │ │ ├── SpecieMixture.cxx-backup │ │ │ │ ├── SpecieMixture.hxx │ │ │ │ └── SpecieMixtureI.hxx │ │ │ ├── basicCombustionMixture │ │ │ │ ├── basicCombustionMixture.cxx │ │ │ │ ├── basicCombustionMixture.hxx │ │ │ │ └── basicCombustionMixtureI.hxx │ │ │ ├── basicMultiComponentMixture │ │ │ │ ├── basicMultiComponentMixture.cxx │ │ │ │ ├── basicMultiComponentMixture.hxx │ │ │ │ └── basicMultiComponentMixtureI.hxx │ │ │ ├── basicSpecieMixture │ │ │ │ ├── basicSpecieMixture.cxx │ │ │ │ └── basicSpecieMixture.hxx │ │ │ ├── egrMixture │ │ │ │ ├── egrMixture.cxx-backup │ │ │ │ ├── egrMixture.hxx │ │ │ │ └── egrMixtureI.hxx │ │ │ ├── homogeneousMixture │ │ │ │ ├── homogeneousMixture.cxx-backup │ │ │ │ ├── homogeneousMixture.hxx │ │ │ │ └── homogeneousMixtureI.hxx │ │ │ ├── inhomogeneousMixture │ │ │ │ ├── inhomogeneousMixture.cxx-backup │ │ │ │ ├── inhomogeneousMixture.hxx │ │ │ │ └── inhomogeneousMixtureI.hxx │ │ │ ├── multiComponentMixture │ │ │ │ ├── multiComponentMixture.cxx-backup │ │ │ │ ├── multiComponentMixture.hxx │ │ │ │ └── multiComponentMixtureI.hxx │ │ │ ├── reactingMixture │ │ │ │ ├── reactingMixture.cxx-backup │ │ │ │ ├── reactingMixture.hxx │ │ │ │ └── reactingMixtureI.hxx │ │ │ ├── singleComponentMixture │ │ │ │ ├── singleComponentMixture.cxx-backup │ │ │ │ ├── singleComponentMixture.hxx │ │ │ │ └── singleComponentMixtureI.hxx │ │ │ ├── singleStepReactingMixture │ │ │ │ ├── singleStepReactingMixture.cxx-backup │ │ │ │ ├── singleStepReactingMixture.hxx │ │ │ │ ├── singleStepReactingMixtureI.hxx │ │ │ │ └── singleStepReactingMixture_Imp.hxx │ │ │ └── veryInhomogeneousMixture │ │ │ │ ├── veryInhomogeneousMixture.cxx-backup │ │ │ │ ├── veryInhomogeneousMixture.hxx │ │ │ │ └── veryInhomogeneousMixtureI.hxx │ │ ├── psiReactionThermo │ │ │ ├── psiReactionThermo.cxx │ │ │ ├── psiReactionThermo.hxx │ │ │ └── psiReactionThermos.cxx │ │ ├── psiuReactionThermo │ │ │ ├── heheuPsiThermo.cxx-backup │ │ │ ├── heheuPsiThermo.hxx │ │ │ ├── heheuPsiThermoI.hxx │ │ │ ├── psiuReactionThermo.cxx │ │ │ ├── psiuReactionThermo.hxx │ │ │ └── psiuReactionThermos.cxx │ │ └── rhoReactionThermo │ │ │ ├── rhoReactionThermo.cxx │ │ │ ├── rhoReactionThermo.hxx │ │ │ └── rhoReactionThermos.cxx │ │ ├── solidChemistryModel │ │ ├── basicSolidChemistryModel │ │ │ ├── basicSolidChemistryModel.cxx │ │ │ ├── basicSolidChemistryModel.hxx │ │ │ ├── basicSolidChemistryModelI.hxx │ │ │ ├── basicSolidChemistryModelNew.cxx │ │ │ └── basicSolidChemistryModels.cxx │ │ ├── makeSolidChemistryModel.hxx │ │ ├── pyrolysisChemistryModel │ │ │ ├── pyrolysisChemistryModel.cxx-backup │ │ │ ├── pyrolysisChemistryModel.hxx │ │ │ ├── pyrolysisChemistryModelI.hxx │ │ │ └── pyrolysisChemistryModel_Imp.hxx │ │ ├── solidChemistryModel │ │ │ ├── solidChemistryModel.cxx-backup │ │ │ ├── solidChemistryModel.hxx │ │ │ ├── solidChemistryModelI.hxx │ │ │ └── solidChemistryModel_Imp.hxx │ │ └── solidChemistrySolver │ │ │ ├── makeSolidChemistrySolverType.hxx │ │ │ └── makeSolidChemistrySolvers.cxx │ │ ├── solidSpecie │ │ ├── include │ │ │ └── solidThermoPhysicsTypes.hxx │ │ ├── reaction │ │ │ ├── SolidReaction │ │ │ │ ├── SolidReaction.cxx-backup │ │ │ │ ├── SolidReaction.hxx │ │ │ │ ├── SolidReactionI.hxx │ │ │ │ └── SolidReaction_Imp.hxx │ │ │ ├── reactionRate │ │ │ │ └── solidArrheniusReactionRate │ │ │ │ │ ├── solidArrheniusReactionRate.hxx │ │ │ │ │ └── solidArrheniusReactionRateI.hxx │ │ │ └── reactions │ │ │ │ ├── makeSolidReaction.hxx │ │ │ │ └── makeSolidReactions.cxx │ │ └── transport │ │ │ ├── const │ │ │ ├── constAnIsoSolidTransport.cxx-backup │ │ │ ├── constAnIsoSolidTransport.hxx │ │ │ ├── constAnIsoSolidTransportI.hxx │ │ │ ├── constAnIsoSolidTransport_Imp.hxx │ │ │ ├── constIsoSolidTransport.cxx-backup │ │ │ ├── constIsoSolidTransport.hxx │ │ │ ├── constIsoSolidTransportI.hxx │ │ │ └── constIsoSolidTransport_Imp.hxx │ │ │ ├── exponential │ │ │ ├── exponentialSolidTransport.cxx-backup │ │ │ ├── exponentialSolidTransport.hxx │ │ │ ├── exponentialSolidTransportI.hxx │ │ │ └── exponentialSolidTransport_Imp.hxx │ │ │ └── polynomial │ │ │ ├── polynomialSolidTransport.cxx-backup │ │ │ ├── polynomialSolidTransport.hxx │ │ │ ├── polynomialSolidTransportI.hxx │ │ │ └── polynomialSolidTransport_Imp.hxx │ │ ├── solidThermo │ │ ├── solidReactionThermo │ │ │ ├── makeReactingSolidThermo.hxx │ │ │ ├── solidReactionThermo.cxx │ │ │ ├── solidReactionThermo.hxx │ │ │ └── solidReactionThermos.cxx │ │ └── solidThermo │ │ │ ├── heSolidThermo.cxx-backup │ │ │ ├── heSolidThermo.hxx │ │ │ ├── heSolidThermoI.hxx │ │ │ ├── makeSolidThermo.hxx │ │ │ ├── solidThermo.cxx │ │ │ ├── solidThermo.hxx │ │ │ └── solidThermos.cxx │ │ ├── specie │ │ ├── atomicWeights │ │ │ ├── atomicWeights.cxx │ │ │ └── atomicWeights.hxx │ │ ├── equationOfState │ │ │ ├── Boussinesq │ │ │ │ ├── Boussinesq.cxx │ │ │ │ ├── Boussinesq.hxx │ │ │ │ └── BoussinesqI.hxx │ │ │ ├── PengRobinsonGas │ │ │ │ ├── PengRobinsonGas.cxx │ │ │ │ ├── PengRobinsonGas.hxx │ │ │ │ └── PengRobinsonGasI.hxx │ │ │ ├── adiabaticPerfectFluid │ │ │ │ ├── adiabaticPerfectFluid.cxx │ │ │ │ ├── adiabaticPerfectFluid.hxx │ │ │ │ └── adiabaticPerfectFluidI.hxx │ │ │ ├── icoPolynomial │ │ │ │ ├── icoPolynomial.cxx-backup │ │ │ │ ├── icoPolynomial.hxx │ │ │ │ ├── icoPolynomialI.hxx │ │ │ │ └── icoPolynomial_Imp.hxx │ │ │ ├── incompressiblePerfectGas │ │ │ │ ├── incompressiblePerfectGas.cxx │ │ │ │ ├── incompressiblePerfectGas.hxx │ │ │ │ └── incompressiblePerfectGasI.hxx │ │ │ ├── linear │ │ │ │ ├── linearEquationOfState.cxx-backup │ │ │ │ ├── linearEquationOfState.hxx │ │ │ │ ├── linearEquationOfStateI.hxx │ │ │ │ └── linearEquationOfState_Imp.hxx │ │ │ ├── perfectFluid │ │ │ │ ├── perfectFluid.cxx │ │ │ │ ├── perfectFluid.hxx │ │ │ │ └── perfectFluidI.hxx │ │ │ ├── perfectGas │ │ │ │ ├── perfectGas.cxx │ │ │ │ ├── perfectGas.hxx │ │ │ │ └── perfectGasI.hxx │ │ │ └── rhoConst │ │ │ │ ├── rhoConst.cxx-backup │ │ │ │ ├── rhoConst.hxx │ │ │ │ ├── rhoConstI.hxx │ │ │ │ └── rhoConst_Imp.hxx │ │ ├── include │ │ │ ├── reactionTypes.hxx │ │ │ └── thermoPhysicsTypes.hxx │ │ ├── reaction │ │ │ ├── Reactions │ │ │ │ ├── IrreversibleReaction │ │ │ │ │ ├── IrreversibleReaction.cxx-backup │ │ │ │ │ ├── IrreversibleReaction.hxx │ │ │ │ │ └── IrreversibleReactionI.hxx │ │ │ │ ├── NonEquilibriumReversibleReaction │ │ │ │ │ ├── NonEquilibriumReversibleReaction.cxx-backup │ │ │ │ │ ├── NonEquilibriumReversibleReaction.hxx │ │ │ │ │ └── NonEquilibriumReversibleReactionI.hxx │ │ │ │ ├── Reaction │ │ │ │ │ ├── Reaction.cxx-backup │ │ │ │ │ ├── Reaction.hxx │ │ │ │ │ ├── ReactionI.hxx │ │ │ │ │ └── Reaction_Imp.hxx │ │ │ │ ├── ReactionList │ │ │ │ │ ├── ReactionList.cxx-backup │ │ │ │ │ ├── ReactionList.hxx │ │ │ │ │ └── ReactionListI.hxx │ │ │ │ ├── ReactionProxy │ │ │ │ │ ├── ReactionProxy.cxx-backup │ │ │ │ │ ├── ReactionProxy.hxx │ │ │ │ │ └── ReactionProxyI.hxx │ │ │ │ ├── ReversibleReaction │ │ │ │ │ ├── ReversibleReaction.cxx-backup │ │ │ │ │ ├── ReversibleReaction.hxx │ │ │ │ │ └── ReversibleReactionI.hxx │ │ │ │ ├── makeLangmuirHinshelwoodReactions.cxx │ │ │ │ ├── makeMichaelisMentenReactions.cxx │ │ │ │ ├── makeReaction.hxx │ │ │ │ └── makeReactions.cxx │ │ │ ├── reactionRate │ │ │ │ ├── ArrheniusReactionRate │ │ │ │ │ ├── ArrheniusReactionRate.cxx │ │ │ │ │ ├── ArrheniusReactionRate.hxx │ │ │ │ │ └── ArrheniusReactionRateI.hxx │ │ │ │ ├── ChemicallyActivatedReactionRate │ │ │ │ │ ├── ChemicallyActivatedReactionRate.cxx │ │ │ │ │ ├── ChemicallyActivatedReactionRate.hxx │ │ │ │ │ └── ChemicallyActivatedReactionRateI.hxx │ │ │ │ ├── FallOffReactionRate │ │ │ │ │ ├── FallOffReactionRate.cxx │ │ │ │ │ ├── FallOffReactionRate.hxx │ │ │ │ │ └── FallOffReactionRateI.hxx │ │ │ │ ├── JanevReactionRate │ │ │ │ │ ├── JanevReactionRate.cxx │ │ │ │ │ ├── JanevReactionRate.hxx │ │ │ │ │ └── JanevReactionRateI.hxx │ │ │ │ ├── LandauTellerReactionRate │ │ │ │ │ ├── LandauTellerReactionRate.cxx │ │ │ │ │ ├── LandauTellerReactionRate.hxx │ │ │ │ │ └── LandauTellerReactionRateI.hxx │ │ │ │ ├── LangmuirHinshelwood │ │ │ │ │ ├── LangmuirHinshelwoodReactionRate.cxx │ │ │ │ │ ├── LangmuirHinshelwoodReactionRate.hxx │ │ │ │ │ └── LangmuirHinshelwoodReactionRateI.hxx │ │ │ │ ├── MichaelisMenten │ │ │ │ │ ├── MichaelisMentenReactionRate.cxx │ │ │ │ │ ├── MichaelisMentenReactionRate.hxx │ │ │ │ │ └── MichaelisMentenReactionRateI.hxx │ │ │ │ ├── fallOffFunctions │ │ │ │ │ ├── LindemannFallOffFunction │ │ │ │ │ │ ├── LindemannFallOffFunction.cxx │ │ │ │ │ │ ├── LindemannFallOffFunction.hxx │ │ │ │ │ │ └── LindemannFallOffFunctionI.hxx │ │ │ │ │ ├── SRIFallOffFunction │ │ │ │ │ │ ├── SRIFallOffFunction.cxx │ │ │ │ │ │ ├── SRIFallOffFunction.hxx │ │ │ │ │ │ └── SRIFallOffFunctionI.hxx │ │ │ │ │ └── TroeFallOffFunction │ │ │ │ │ │ ├── TroeFallOffFunction.cxx │ │ │ │ │ │ ├── TroeFallOffFunction.hxx │ │ │ │ │ │ └── TroeFallOffFunctionI.hxx │ │ │ │ ├── infiniteReactionRate │ │ │ │ │ ├── infiniteReactionRate.cxx │ │ │ │ │ ├── infiniteReactionRate.hxx │ │ │ │ │ └── infiniteReactionRateI.hxx │ │ │ │ ├── powerSeries │ │ │ │ │ ├── powerSeriesReactionRate.cxx │ │ │ │ │ ├── powerSeriesReactionRate.hxx │ │ │ │ │ └── powerSeriesReactionRateI.hxx │ │ │ │ ├── thirdBodyArrheniusReactionRate │ │ │ │ │ ├── thirdBodyArrheniusReactionRate.cxx │ │ │ │ │ ├── thirdBodyArrheniusReactionRate.hxx │ │ │ │ │ └── thirdBodyArrheniusReactionRateI.hxx │ │ │ │ └── thirdBodyEfficiencies │ │ │ │ │ ├── thirdBodyEfficiencies.cxx │ │ │ │ │ ├── thirdBodyEfficiencies.hxx │ │ │ │ │ └── thirdBodyEfficienciesI.hxx │ │ │ └── specieCoeffs │ │ │ │ ├── specieCoeffs.cxx │ │ │ │ └── specieCoeffs.hxx │ │ ├── specie │ │ │ ├── specie.cxx │ │ │ ├── specie.hxx │ │ │ └── specieI.hxx │ │ ├── specieElement │ │ │ ├── specieElement.hxx │ │ │ └── specieElementI.hxx │ │ ├── speciesTable │ │ │ └── speciesTable.hxx │ │ ├── thermo │ │ │ ├── absoluteEnthalpy │ │ │ │ └── absoluteEnthalpy.hxx │ │ │ ├── absoluteInternalEnergy │ │ │ │ └── absoluteInternalEnergy.hxx │ │ │ ├── eConst │ │ │ │ ├── eConstThermo.cxx-backup │ │ │ │ ├── eConstThermo.hxx │ │ │ │ ├── eConstThermoI.hxx │ │ │ │ └── eConstThermo_Imp.hxx │ │ │ ├── eRefConst │ │ │ │ ├── eRefConstThermo.cxx │ │ │ │ ├── eRefConstThermo.hxx │ │ │ │ └── eRefConstThermoI.hxx │ │ │ ├── hConst │ │ │ │ ├── hConstThermo.cxx-backup │ │ │ │ ├── hConstThermo.hxx │ │ │ │ ├── hConstThermoI.hxx │ │ │ │ └── hConstThermo_Imp.hxx │ │ │ ├── hPolynomial │ │ │ │ ├── hPolynomialThermo.cxx │ │ │ │ ├── hPolynomialThermo.hxx │ │ │ │ └── hPolynomialThermoI.hxx │ │ │ ├── hPower │ │ │ │ ├── hPowerThermo.cxx │ │ │ │ ├── hPowerThermo.hxx │ │ │ │ └── hPowerThermoI.hxx │ │ │ ├── hRefConst │ │ │ │ ├── hRefConstThermo.cxx-backup │ │ │ │ ├── hRefConstThermo.hxx │ │ │ │ ├── hRefConstThermoI.hxx │ │ │ │ └── hRefConstThermo_Imp.hxx │ │ │ ├── janaf │ │ │ │ ├── janafThermo.cxx-backup │ │ │ │ ├── janafThermo.hxx │ │ │ │ ├── janafThermoI.hxx │ │ │ │ └── janafThermo_Imp.hxx │ │ │ ├── sensibleEnthalpy │ │ │ │ └── sensibleEnthalpy.hxx │ │ │ ├── sensibleInternalEnergy │ │ │ │ └── sensibleInternalEnergy.hxx │ │ │ └── thermo │ │ │ │ ├── EtoHthermo.lxx │ │ │ │ ├── HtoEthermo.lxx │ │ │ │ ├── thermo.cxx-backup │ │ │ │ ├── thermo.hxx │ │ │ │ ├── thermoI.hxx │ │ │ │ └── thermo_Imp.hxx │ │ └── transport │ │ │ ├── WLF │ │ │ ├── WLFTransport.cxx-backup │ │ │ ├── WLFTransport.hxx │ │ │ ├── WLFTransportI.hxx │ │ │ └── WLFTransport_Imp.hxx │ │ │ ├── const │ │ │ ├── constTransport.cxx-backup │ │ │ ├── constTransport.hxx │ │ │ ├── constTransportI.hxx │ │ │ └── constTransport_Imp.hxx │ │ │ ├── logPolynomial │ │ │ ├── logPolynomialTransport.cxx-backup │ │ │ ├── logPolynomialTransport.hxx │ │ │ ├── logPolynomialTransportI.hxx │ │ │ └── logPolynomialTransport_Imp.hxx │ │ │ ├── polynomial │ │ │ ├── polynomialTransport.cxx-backup │ │ │ ├── polynomialTransport.hxx │ │ │ ├── polynomialTransportI.hxx │ │ │ └── polynomialTransport_Imp.hxx │ │ │ └── sutherland │ │ │ ├── sutherlandTransport.cxx-backup │ │ │ ├── sutherlandTransport.hxx │ │ │ ├── sutherlandTransportI.hxx │ │ │ └── sutherlandTransport_Imp.hxx │ │ └── thermophysicalProperties │ │ ├── liquidProperties │ │ ├── Ar │ │ │ ├── Ar.cxx │ │ │ ├── Ar.hxx │ │ │ └── ArI.hxx │ │ ├── C10H22 │ │ │ ├── C10H22.cxx │ │ │ ├── C10H22.hxx │ │ │ └── C10H22I.hxx │ │ ├── C12H26 │ │ │ ├── C12H26.cxx │ │ │ ├── C12H26.hxx │ │ │ └── C12H26I.hxx │ │ ├── C13H28 │ │ │ ├── C13H28.cxx │ │ │ ├── C13H28.hxx │ │ │ └── C13H28I.hxx │ │ ├── C14H30 │ │ │ ├── C14H30.cxx │ │ │ ├── C14H30.hxx │ │ │ └── C14H30I.hxx │ │ ├── C16H34 │ │ │ ├── C16H34.cxx │ │ │ ├── C16H34.hxx │ │ │ └── C16H34I.hxx │ │ ├── C2H5OH │ │ │ ├── C2H5OH.cxx │ │ │ ├── C2H5OH.hxx │ │ │ └── C2H5OHI.hxx │ │ ├── C2H6 │ │ │ ├── C2H6.cxx │ │ │ ├── C2H6.hxx │ │ │ └── C2H6I.hxx │ │ ├── C2H6O │ │ │ ├── C2H6O.cxx │ │ │ ├── C2H6O.hxx │ │ │ └── C2H6OI.hxx │ │ ├── C3H6O │ │ │ ├── C3H6O.cxx │ │ │ ├── C3H6O.hxx │ │ │ └── C3H6OI.hxx │ │ ├── C3H8 │ │ │ ├── C3H8.cxx │ │ │ ├── C3H8.hxx │ │ │ └── C3H8I.hxx │ │ ├── C4H10O │ │ │ ├── C4H10O.cxx │ │ │ ├── C4H10O.hxx │ │ │ └── C4H10OI.hxx │ │ ├── C6H14 │ │ │ ├── C6H14.cxx │ │ │ ├── C6H14.hxx │ │ │ └── C6H14I.hxx │ │ ├── C6H6 │ │ │ ├── C6H6.cxx │ │ │ ├── C6H6.hxx │ │ │ └── C6H6I.hxx │ │ ├── C7H16 │ │ │ ├── C7H16.cxx │ │ │ ├── C7H16.hxx │ │ │ └── C7H16I.hxx │ │ ├── C7H8 │ │ │ ├── C7H8.cxx │ │ │ ├── C7H8.hxx │ │ │ └── C7H8I.hxx │ │ ├── C8H10 │ │ │ ├── C8H10.cxx │ │ │ ├── C8H10.hxx │ │ │ └── C8H10I.hxx │ │ ├── C8H18 │ │ │ ├── C8H18.cxx │ │ │ ├── C8H18.hxx │ │ │ └── C8H18I.hxx │ │ ├── C9H20 │ │ │ ├── C9H20.cxx │ │ │ ├── C9H20.hxx │ │ │ └── C9H20I.hxx │ │ ├── CH3OH │ │ │ ├── CH3OH.cxx │ │ │ ├── CH3OH.hxx │ │ │ └── CH3OHI.hxx │ │ ├── CH4N2O │ │ │ ├── CH4N2O.cxx │ │ │ ├── CH4N2O.hxx │ │ │ └── CH4N2OI.hxx │ │ ├── H2O │ │ │ ├── H2O.cxx │ │ │ ├── H2O.hxx │ │ │ └── H2OI.hxx │ │ ├── IC8H18 │ │ │ ├── IC8H18.cxx │ │ │ ├── IC8H18.hxx │ │ │ └── IC8H18I.hxx │ │ ├── IDEA │ │ │ ├── IDEA.cxx │ │ │ ├── IDEA.hxx │ │ │ ├── IDEA.thermo │ │ │ └── IDEAI.hxx │ │ ├── MB │ │ │ ├── MB.cxx │ │ │ ├── MB.hxx │ │ │ └── MBI.hxx │ │ ├── N2 │ │ │ ├── N2.cxx │ │ │ ├── N2.hxx │ │ │ └── N2I.hxx │ │ ├── aC10H7CH3 │ │ │ ├── aC10H7CH3.cxx │ │ │ ├── aC10H7CH3.hxx │ │ │ └── aC10H7CH3I.hxx │ │ ├── bC10H7CH3 │ │ │ ├── bC10H7CH3.cxx │ │ │ ├── bC10H7CH3.hxx │ │ │ └── bC10H7CH3I.hxx │ │ ├── iC3H8O │ │ │ ├── iC3H8O.cxx │ │ │ ├── iC3H8O.hxx │ │ │ └── iC3H8OI.hxx │ │ ├── liquidMixtureProperties │ │ │ ├── liquidMixtureProperties.cxx │ │ │ └── liquidMixtureProperties.hxx │ │ ├── liquidProperties │ │ │ ├── liquidProperties.cxx │ │ │ ├── liquidProperties.hxx │ │ │ └── liquidPropertiesI.hxx │ │ └── nC3H8O │ │ │ ├── nC3H8O.cxx │ │ │ ├── nC3H8O.hxx │ │ │ └── nC3H8OI.hxx │ │ ├── solidProperties │ │ ├── C │ │ │ ├── C.cxx │ │ │ └── C.hxx │ │ ├── CaCO3 │ │ │ ├── CaCO3.cxx │ │ │ └── CaCO3.hxx │ │ ├── ash │ │ │ ├── ash.cxx │ │ │ └── ash.hxx │ │ ├── solidMixtureProperties │ │ │ ├── solidMixtureProperties.cxx │ │ │ └── solidMixtureProperties.hxx │ │ └── solidProperties │ │ │ ├── solidProperties.cxx │ │ │ ├── solidProperties.hxx │ │ │ ├── solidPropertiesI.hxx │ │ │ └── solidPropertiesNew.cxx │ │ ├── thermophysicalFunctions │ │ ├── APIfunctions │ │ │ └── APIdiffCoefFunc │ │ │ │ ├── APIdiffCoefFunc.cxx │ │ │ │ └── APIdiffCoefFunc.hxx │ │ ├── NSRDSfunctions │ │ │ ├── NSRDSfunc0 │ │ │ │ ├── NSRDSfunc0.cxx │ │ │ │ └── NSRDSfunc0.hxx │ │ │ ├── NSRDSfunc1 │ │ │ │ ├── NSRDSfunc1.cxx │ │ │ │ └── NSRDSfunc1.hxx │ │ │ ├── NSRDSfunc14 │ │ │ │ ├── NSRDSfunc14.cxx │ │ │ │ └── NSRDSfunc14.hxx │ │ │ ├── NSRDSfunc2 │ │ │ │ ├── NSRDSfunc2.cxx │ │ │ │ └── NSRDSfunc2.hxx │ │ │ ├── NSRDSfunc3 │ │ │ │ ├── NSRDSfunc3.cxx │ │ │ │ └── NSRDSfunc3.hxx │ │ │ ├── NSRDSfunc4 │ │ │ │ ├── NSRDSfunc4.cxx │ │ │ │ └── NSRDSfunc4.hxx │ │ │ ├── NSRDSfunc5 │ │ │ │ ├── NSRDSfunc5.cxx │ │ │ │ └── NSRDSfunc5.hxx │ │ │ ├── NSRDSfunc6 │ │ │ │ ├── NSRDSfunc6.cxx │ │ │ │ └── NSRDSfunc6.hxx │ │ │ └── NSRDSfunc7 │ │ │ │ ├── NSRDSfunc7.cxx │ │ │ │ └── NSRDSfunc7.hxx │ │ └── thermophysicalFunction │ │ │ ├── thermophysicalFunction.cxx │ │ │ └── thermophysicalFunction.hxx │ │ ├── thermophysicalProperties │ │ ├── thermophysicalProperties.cxx │ │ ├── thermophysicalProperties.hxx │ │ └── thermophysicalPropertiesI.hxx │ │ └── thermophysicalPropertiesSelector │ │ ├── thermophysicalPropertiesSelector.cxx-backup │ │ ├── thermophysicalPropertiesSelector.hxx │ │ ├── thermophysicalPropertiesSelectorI.hxx │ │ └── thermophysicalPropertiesSelector_Imp.hxx ├── TnbThermoPhysicalModels.vcxproj ├── TnbThermoPhysicalModels.vcxproj.filters ├── chemkinLexer.cxx └── include │ ├── APIdiffCoefFunc.hxx │ ├── Ar.hxx │ ├── ArI.hxx │ ├── ArrheniusReactionRate.hxx │ ├── ArrheniusReactionRateI.hxx │ ├── BasicChemistryModelTemplate.hxx │ ├── BasicChemistryModelTemplateI.hxx │ ├── BasicChemistryModelTemplate_Imp.hxx │ ├── Boussinesq.hxx │ ├── BoussinesqI.hxx │ ├── C.hxx │ ├── C10H22.hxx │ ├── C10H22I.hxx │ ├── C12H26.hxx │ ├── C12H26I.hxx │ ├── C13H28.hxx │ ├── C13H28I.hxx │ ├── C14H30.hxx │ ├── C14H30I.hxx │ ├── C16H34.hxx │ ├── C16H34I.hxx │ ├── C2H5OH.hxx │ ├── C2H5OHI.hxx │ ├── C2H6.hxx │ ├── C2H6I.hxx │ ├── C2H6O.hxx │ ├── C2H6OI.hxx │ ├── C3H6O.hxx │ ├── C3H6OI.hxx │ ├── C3H8.hxx │ ├── C3H8I.hxx │ ├── C4H10O.hxx │ ├── C4H10OI.hxx │ ├── C6H14.hxx │ ├── C6H14I.hxx │ ├── C6H6.hxx │ ├── C6H6I.hxx │ ├── C7H16.hxx │ ├── C7H16I.hxx │ ├── C7H8.hxx │ ├── C7H8I.hxx │ ├── C8H10.hxx │ ├── C8H10I.hxx │ ├── C8H18.hxx │ ├── C8H18I.hxx │ ├── C9H20.hxx │ ├── C9H20I.hxx │ ├── CH3OH.hxx │ ├── CH3OHI.hxx │ ├── CH4N2O.hxx │ ├── CH4N2OI.hxx │ ├── CaCO3.hxx │ ├── ChemicallyActivatedReactionRate.hxx │ ├── ChemicallyActivatedReactionRateI.hxx │ ├── Chung.hxx │ ├── DAC.hxx │ ├── DACI.hxx │ ├── DRG.hxx │ ├── DRGEP.hxx │ ├── DRGEPI.hxx │ ├── DRGI.hxx │ ├── EFA.hxx │ ├── EFAI.hxx │ ├── EtoHthermo.hxx │ ├── EtoHthermo.lxx │ ├── EulerImplicit.hxx │ ├── EulerImplicitI.hxx │ ├── FallOffReactionRate.hxx │ ├── FallOffReactionRateI.hxx │ ├── Gulders.hxx │ ├── GuldersEGR.hxx │ ├── H2O.hxx │ ├── H2OI.hxx │ ├── HtoEthermo.hxx │ ├── HtoEthermo.lxx │ ├── IC8H18.hxx │ ├── IC8H18I.hxx │ ├── IDEA.hxx │ ├── IDEAI.hxx │ ├── ISAT.hxx │ ├── ISATI.hxx │ ├── IrreversibleReaction.hxx │ ├── IrreversibleReactionI.hxx │ ├── JanevReactionRate.hxx │ ├── JanevReactionRateI.hxx │ ├── LandauTellerReactionRate.hxx │ ├── LandauTellerReactionRateI.hxx │ ├── LangmuirHinshelwoodReactionRate.hxx │ ├── LangmuirHinshelwoodReactionRateI.hxx │ ├── LindemannFallOffFunction.hxx │ ├── LindemannFallOffFunctionI.hxx │ ├── MB.hxx │ ├── MBI.hxx │ ├── MichaelisMentenReactionRate.hxx │ ├── MichaelisMentenReactionRateI.hxx │ ├── N2.hxx │ ├── N2I.hxx │ ├── NSRDSfunc0.hxx │ ├── NSRDSfunc1.hxx │ ├── NSRDSfunc14.hxx │ ├── NSRDSfunc2.hxx │ ├── NSRDSfunc3.hxx │ ├── NSRDSfunc4.hxx │ ├── NSRDSfunc5.hxx │ ├── NSRDSfunc6.hxx │ ├── NSRDSfunc7.hxx │ ├── NonEquilibriumReversibleReaction.hxx │ ├── NonEquilibriumReversibleReactionI.hxx │ ├── PFA.hxx │ ├── PFAI.hxx │ ├── PengRobinsonGas.hxx │ ├── PengRobinsonGasI.hxx │ ├── RaviPetersen.hxx │ ├── Reaction.hxx │ ├── ReactionI.hxx │ ├── ReactionList.hxx │ ├── ReactionListI.hxx │ ├── ReactionProxy.hxx │ ├── ReactionProxyI.hxx │ ├── Reaction_Imp.hxx │ ├── ReversibleReaction.hxx │ ├── ReversibleReactionI.hxx │ ├── SLGThermo.hxx │ ├── SRIFallOffFunction.hxx │ ├── SRIFallOffFunctionI.hxx │ ├── SolidReaction.hxx │ ├── SolidReactionI.hxx │ ├── SolidReaction_Imp.hxx │ ├── SortableListDRGEP.hxx │ ├── SortableListDRGEPI.hxx │ ├── SortableListEFA.hxx │ ├── SortableListEFAI.hxx │ ├── SpecieMixture.hxx │ ├── SpecieMixtureI.hxx │ ├── StandardChemistryModel.hxx │ ├── StandardChemistryModelI.hxx │ ├── StandardChemistryModel_Imp.hxx │ ├── TDACChemistryModel.hxx │ ├── TDACChemistryModelI.hxx │ ├── TDACChemistryModel_Imp.hxx │ ├── ThermophysicalModels_Module.hxx │ ├── TroeFallOffFunction.hxx │ ├── TroeFallOffFunctionI.hxx │ ├── WLFTransport.hxx │ ├── WLFTransportI.hxx │ ├── WLFTransport_Imp.hxx │ ├── Wallis.hxx │ ├── aC10H7CH3.hxx │ ├── aC10H7CH3I.hxx │ ├── absoluteEnthalpy.hxx │ ├── absoluteInternalEnergy.hxx │ ├── adiabaticPerfectFluid.hxx │ ├── adiabaticPerfectFluidI.hxx │ ├── ash.hxx │ ├── atomicWeights.hxx │ ├── bC10H7CH3.hxx │ ├── bC10H7CH3I.hxx │ ├── barotropicCompressibilityModel.hxx │ ├── basicChemistryModel.hxx │ ├── basicChemistryModelI.hxx │ ├── basicChemistryModelTemplates_Imp.hxx │ ├── basicCombustionMixture.hxx │ ├── basicCombustionMixtureI.hxx │ ├── basicMixture.hxx │ ├── basicMultiComponentMixture.hxx │ ├── basicMultiComponentMixtureI.hxx │ ├── basicSolidChemistryModel.hxx │ ├── basicSolidChemistryModelI.hxx │ ├── basicSpecieMixture.hxx │ ├── basicThermo.hxx │ ├── basicThermoI.hxx │ ├── binaryNode.hxx │ ├── binaryNodeI.hxx │ ├── binaryTree.hxx │ ├── binaryTreeI.hxx │ ├── chemPointISAT.hxx │ ├── chemPointISATI.hxx │ ├── chemistryReader.hxx │ ├── chemistryReaderI.hxx │ ├── chemistryReductionMethod.hxx │ ├── chemistryReductionMethodI.hxx │ ├── chemistryReductionMethodNew_Imp.hxx │ ├── chemistryReductionMethod_Imp.hxx │ ├── chemistrySolver.hxx │ ├── chemistrySolverI.hxx │ ├── chemistryTabulationMethod.hxx │ ├── chemistryTabulationMethodI.hxx │ ├── chemistryTabulationMethodNew_Imp.hxx │ ├── chemkinReader.hxx │ ├── chemkinReaderI.hxx │ ├── constAnIsoSolidTransport.hxx │ ├── constAnIsoSolidTransportI.hxx │ ├── constAnIsoSolidTransport_Imp.hxx │ ├── constIsoSolidTransport.hxx │ ├── constIsoSolidTransportI.hxx │ ├── constIsoSolidTransport_Imp.hxx │ ├── constLaminarFlameSpeed.hxx │ ├── constTransport.hxx │ ├── constTransportI.hxx │ ├── constTransport_Imp.hxx │ ├── eConstThermo.hxx │ ├── eConstThermoI.hxx │ ├── eConstThermo_Imp.hxx │ ├── eRefConstThermo.hxx │ ├── eRefConstThermoI.hxx │ ├── egrMixture.hxx │ ├── egrMixtureI.hxx │ ├── energyJumpAMIFvPatchScalarField.hxx │ ├── energyJumpFvPatchScalarField.hxx │ ├── exponentialSolidTransport.hxx │ ├── exponentialSolidTransportI.hxx │ ├── exponentialSolidTransport_Imp.hxx │ ├── fixedEnergyFvPatchScalarField.hxx │ ├── fixedUnburntEnthalpyFvPatchScalarField.hxx │ ├── fluidThermo.hxx │ ├── foamChemistryReader.hxx │ ├── foamChemistryReaderI.hxx │ ├── gradientEnergyFvPatchScalarField.hxx │ ├── gradientUnburntEnthalpyFvPatchScalarField.hxx │ ├── hConstThermo.hxx │ ├── hConstThermoI.hxx │ ├── hConstThermo_Imp.hxx │ ├── hPolynomialThermo.hxx │ ├── hPolynomialThermoI.hxx │ ├── hPowerThermo.hxx │ ├── hPowerThermoI.hxx │ ├── hRefConstThermo.hxx │ ├── hRefConstThermoI.hxx │ ├── hRefConstThermo_Imp.hxx │ ├── hePsiThermo.hxx │ ├── hePsiThermoI.hxx │ ├── heRhoThermo.hxx │ ├── heRhoThermoI.hxx │ ├── heSolidThermo.hxx │ ├── heSolidThermoI.hxx │ ├── heThermo.hxx │ ├── heThermoI.hxx │ ├── heheuPsiThermo.hxx │ ├── heheuPsiThermoI.hxx │ ├── homogeneousMixture.hxx │ ├── homogeneousMixtureI.hxx │ ├── iC3H8O.hxx │ ├── iC3H8OI.hxx │ ├── icoPolynomial.hxx │ ├── icoPolynomialI.hxx │ ├── icoPolynomial_Imp.hxx │ ├── incompressiblePerfectGas.hxx │ ├── incompressiblePerfectGasI.hxx │ ├── infiniteReactionRate.hxx │ ├── infiniteReactionRateI.hxx │ ├── inhomogeneousMixture.hxx │ ├── inhomogeneousMixtureI.hxx │ ├── janafThermo.hxx │ ├── janafThermoI.hxx │ ├── janafThermo_Imp.hxx │ ├── laminarFlameSpeed.hxx │ ├── linearBarotropicCompressibilityModel.hxx │ ├── linearEquationOfState.hxx │ ├── linearEquationOfStateI.hxx │ ├── linearEquationOfState_Imp.hxx │ ├── liquidMixtureProperties.hxx │ ├── liquidProperties.hxx │ ├── liquidPropertiesI.hxx │ ├── liquidThermo.hxx │ ├── logPolynomialTransport.hxx │ ├── logPolynomialTransportI.hxx │ ├── logPolynomialTransport_Imp.hxx │ ├── makeChemistryModel.hxx │ ├── makeChemistryReductionMethods.hxx │ ├── makeChemistrySolverTypes.hxx │ ├── makeChemistryTabulationMethods.hxx │ ├── makeReactingSolidThermo.hxx │ ├── makeReaction.hxx │ ├── makeReactionThermo.hxx │ ├── makeSolidChemistryModel.hxx │ ├── makeSolidChemistrySolverType.hxx │ ├── makeSolidReaction.hxx │ ├── makeSolidThermo.hxx │ ├── makeThermo.hxx │ ├── mixedEnergyFvPatchScalarField.hxx │ ├── mixedUnburntEnthalpyFvPatchScalarField.hxx │ ├── moleFractions.hxx │ ├── moleFractionsFunctionObjects.hxx │ ├── moleFractionsI.hxx │ ├── multiComponentMixture.hxx │ ├── multiComponentMixtureI.hxx │ ├── nC3H8O.hxx │ ├── nC3H8OI.hxx │ ├── noChemistryReduction.hxx │ ├── noChemistryReductionI.hxx │ ├── noChemistrySolver.hxx │ ├── noChemistrySolverI.hxx │ ├── noChemistryTabulation.hxx │ ├── noChemistryTabulationI.hxx │ ├── ode.hxx │ ├── odeI.hxx │ ├── perfectFluid.hxx │ ├── perfectFluidI.hxx │ ├── perfectGas.hxx │ ├── perfectGasI.hxx │ ├── polynomialSolidTransport.hxx │ ├── polynomialSolidTransportI.hxx │ ├── polynomialSolidTransport_Imp.hxx │ ├── polynomialTransport.hxx │ ├── polynomialTransportI.hxx │ ├── polynomialTransport_Imp.hxx │ ├── powerSeriesReactionRate.hxx │ ├── powerSeriesReactionRateI.hxx │ ├── psiReactionThermo.hxx │ ├── psiThermo.hxx │ ├── psiuReactionThermo.hxx │ ├── pureMixture.hxx │ ├── pureMixtureI.hxx │ ├── pyrolysisChemistryModel.hxx │ ├── pyrolysisChemistryModelI.hxx │ ├── pyrolysisChemistryModel_Imp.hxx │ ├── reactingMixture.hxx │ ├── reactingMixtureI.hxx │ ├── reactionTypes.hxx │ ├── rhoConst.hxx │ ├── rhoConstI.hxx │ ├── rhoConst_Imp.hxx │ ├── rhoReactionThermo.hxx │ ├── rhoThermo.hxx │ ├── sensibleEnthalpy.hxx │ ├── sensibleInternalEnergy.hxx │ ├── singleComponentMixture.hxx │ ├── singleComponentMixtureI.hxx │ ├── singleStepReactingMixture.hxx │ ├── singleStepReactingMixtureI.hxx │ ├── singleStepReactingMixture_Imp.hxx │ ├── solidArrheniusReactionRate.hxx │ ├── solidArrheniusReactionRateI.hxx │ ├── solidChemistryModel.hxx │ ├── solidChemistryModelI.hxx │ ├── solidChemistryModel_Imp.hxx │ ├── solidMixtureProperties.hxx │ ├── solidProperties.hxx │ ├── solidPropertiesI.hxx │ ├── solidReactionThermo.hxx │ ├── solidThermo.hxx │ ├── solidThermoPhysicsTypes.hxx │ ├── specie.hxx │ ├── specieCoeffs.hxx │ ├── specieElement.hxx │ ├── specieElementI.hxx │ ├── specieI.hxx │ ├── specieReactionRates.hxx │ ├── specieReactionRatesI.hxx │ ├── speciesTable.hxx │ ├── sutherlandTransport.hxx │ ├── sutherlandTransportI.hxx │ ├── sutherlandTransport_Imp.hxx │ ├── thermo.hxx │ ├── thermoI.hxx │ ├── thermoPhysicsTypes.hxx │ ├── thermo_Imp.hxx │ ├── thermophysicalFunction.hxx │ ├── thermophysicalProperties.hxx │ ├── thermophysicalPropertiesI.hxx │ ├── thermophysicalPropertiesSelector.hxx │ ├── thermophysicalPropertiesSelectorI.hxx │ ├── thermophysicalPropertiesSelector_Imp.hxx │ ├── thirdBodyArrheniusReactionRate.hxx │ ├── thirdBodyArrheniusReactionRateI.hxx │ ├── thirdBodyEfficiencies.hxx │ ├── thirdBodyEfficienciesI.hxx │ ├── veryInhomogeneousMixture.hxx │ └── veryInhomogeneousMixtureI.hxx ├── TnbTransportModels ├── TnbLib │ └── transportModels │ │ ├── Allwmake │ │ ├── compressible │ │ └── compressibleTransportModel │ │ │ ├── compressibleTransportModel.cxx │ │ │ └── compressibleTransportModel.hxx │ │ ├── immiscibleIncompressibleTwoPhaseMixture │ │ ├── immiscibleIncompressibleTwoPhaseMixture.cxx │ │ └── immiscibleIncompressibleTwoPhaseMixture.hxx │ │ ├── incompressible │ │ ├── incompressibleTwoPhaseMixture │ │ │ ├── incompressibleTwoPhaseMixture.cxx │ │ │ └── incompressibleTwoPhaseMixture.hxx │ │ ├── singlePhaseTransportModel │ │ │ ├── singlePhaseTransportModel.cxx │ │ │ └── singlePhaseTransportModel.hxx │ │ ├── transportModel │ │ │ ├── transportModel.cxx │ │ │ └── transportModel.hxx │ │ └── viscosityModels │ │ │ ├── BirdCarreau │ │ │ ├── viscosityModelBirdCarreau.cxx │ │ │ └── viscosityModelBirdCarreau.hxx │ │ │ ├── Casson │ │ │ ├── viscosityModelCasson.cxx │ │ │ └── viscosityModelCasson.hxx │ │ │ ├── CrossPowerLaw │ │ │ ├── viscosityModelCrossPowerLaw.cxx │ │ │ └── viscosityModelCrossPowerLaw.hxx │ │ │ ├── HerschelBulkley │ │ │ ├── viscosityModelHerschelBulkley.cxx │ │ │ └── viscosityModelHerschelBulkley.hxx │ │ │ ├── Newtonian │ │ │ ├── viscosityModelNewtonian.cxx │ │ │ └── viscosityModelNewtonian.hxx │ │ │ ├── powerLaw │ │ │ ├── viscosityModelPowerLaw.cxx │ │ │ └── viscosityModelPowerLaw.hxx │ │ │ ├── strainRateFunction │ │ │ ├── viscosityModelStrainRateFunction.cxx │ │ │ └── viscosityModelStrainRateFunction.hxx │ │ │ └── viscosityModel │ │ │ ├── viscosityModel.cxx │ │ │ ├── viscosityModel.hxx │ │ │ └── viscosityModelNew.cxx │ │ ├── interfaceProperties │ │ ├── interfaceCompression │ │ │ ├── interfaceCompression.cxx │ │ │ └── interfaceCompression.hxx │ │ ├── interfaceProperties.cxx │ │ ├── interfaceProperties.hxx │ │ └── surfaceTensionModels │ │ │ ├── constant │ │ │ ├── constantSurfaceTension.cxx │ │ │ └── constantSurfaceTension.hxx │ │ │ ├── surfaceTensionModel │ │ │ ├── newSurfaceTensionModel.cxx │ │ │ ├── surfaceTensionModel.cxx │ │ │ └── surfaceTensionModel.hxx │ │ │ └── temperatureDependent │ │ │ ├── temperatureDependentSurfaceTension.cxx │ │ │ └── temperatureDependentSurfaceTension.hxx │ │ ├── module │ │ └── TransportModels_Module.hxx │ │ ├── twoPhaseMixture │ │ └── twoPhaseMixture │ │ │ ├── twoPhaseMixture.cxx │ │ │ └── twoPhaseMixture.hxx │ │ └── twoPhaseProperties │ │ ├── alphaContactAngle │ │ ├── alphaContactAngle │ │ │ ├── alphaContactAngleFvPatchScalarField.cxx │ │ │ └── alphaContactAngleFvPatchScalarField.hxx │ │ ├── constantAlphaContactAngle │ │ │ ├── constantAlphaContactAngleFvPatchScalarField.cxx │ │ │ └── constantAlphaContactAngleFvPatchScalarField.hxx │ │ ├── dynamicAlphaContactAngle │ │ │ ├── dynamicAlphaContactAngleFvPatchScalarField.cxx │ │ │ └── dynamicAlphaContactAngleFvPatchScalarField.hxx │ │ ├── temperatureDependentAlphaContactAngle │ │ │ ├── temperatureDependentAlphaContactAngleFvPatchScalarField.cxx │ │ │ └── temperatureDependentAlphaContactAngleFvPatchScalarField.hxx │ │ └── timeVaryingAlphaContactAngle │ │ │ ├── timeVaryingAlphaContactAngleFvPatchScalarField.cxx │ │ │ └── timeVaryingAlphaContactAngleFvPatchScalarField.hxx │ │ └── alphaFixedPressure │ │ ├── alphaFixedPressureFvPatchScalarField.cxx │ │ └── alphaFixedPressureFvPatchScalarField.hxx ├── TnbTransportModels.vcxproj ├── TnbTransportModels.vcxproj.filters └── include │ ├── TransportModels_Module.hxx │ ├── alphaContactAngleFvPatchScalarField.hxx │ ├── alphaFixedPressureFvPatchScalarField.hxx │ ├── compressibleTransportModel.hxx │ ├── constantAlphaContactAngleFvPatchScalarField.hxx │ ├── constantSurfaceTension.hxx │ ├── dynamicAlphaContactAngleFvPatchScalarField.hxx │ ├── immiscibleIncompressibleTwoPhaseMixture.hxx │ ├── incompressibleTwoPhaseMixture.hxx │ ├── interfaceCompression.hxx │ ├── interfaceProperties.hxx │ ├── singlePhaseTransportModel.hxx │ ├── surfaceTensionModel.hxx │ ├── temperatureDependentAlphaContactAngleFvPatchScalarField.hxx │ ├── temperatureDependentSurfaceTension.hxx │ ├── timeVaryingAlphaContactAngleFvPatchScalarField.hxx │ ├── transportModel.hxx │ ├── twoPhaseMixture.hxx │ ├── viscosityModel.hxx │ ├── viscosityModelBirdCarreau.hxx │ ├── viscosityModelCasson.hxx │ ├── viscosityModelCrossPowerLaw.hxx │ ├── viscosityModelHerschelBulkley.hxx │ ├── viscosityModelNewtonian.hxx │ ├── viscosityModelPowerLaw.hxx │ └── viscosityModelStrainRateFunction.hxx ├── TnbTurbulence ├── TnbLib │ └── TurbulenceModels │ │ ├── Allwmake │ │ ├── compressible │ │ ├── CompressibleTurbulenceModel │ │ │ ├── CompressibleTurbulenceModelTemplate.cxx-backup │ │ │ ├── CompressibleTurbulenceModelTemplate.hxx │ │ │ └── CompressibleTurbulenceModelTemplateI.hxx │ │ ├── EddyDiffusivity │ │ │ ├── EddyDiffusivity.cxx-backup │ │ │ ├── EddyDiffusivity.hxx │ │ │ └── EddyDiffusivityI.hxx │ │ ├── Models │ │ │ ├── compressibleMakeTurbulenceModel.hxx │ │ │ ├── derivedFvPatchFields │ │ │ │ ├── CoupledBaffleMixed │ │ │ │ │ ├── turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.cxx │ │ │ │ │ └── turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.hxx │ │ │ │ ├── RadCoupledMixed │ │ │ │ │ ├── turbulentTemperatureRadCoupledMixedFvPatchScalarField.cxx │ │ │ │ │ └── turbulentTemperatureRadCoupledMixedFvPatchScalarField.hxx │ │ │ │ ├── convectiveHeatTransfer │ │ │ │ │ ├── convectiveHeatTransferFvPatchScalarField.cxx │ │ │ │ │ └── convectiveHeatTransferFvPatchScalarField.hxx │ │ │ │ ├── externalCoupledTempMixed │ │ │ │ │ ├── externalCoupledTemperatureMixedFvPatchScalarField.cxx │ │ │ │ │ └── externalCoupledTemperatureMixedFvPatchScalarField.hxx │ │ │ │ ├── externalWallHeatFluxTemp │ │ │ │ │ ├── externalWallHeatFluxTemperatureFvPatchScalarField.cxx │ │ │ │ │ └── externalWallHeatFluxTemperatureFvPatchScalarField.hxx │ │ │ │ ├── temperatureCoupledBase │ │ │ │ │ ├── temperatureCoupledBase.cxx │ │ │ │ │ └── temperatureCoupledBase.hxx │ │ │ │ ├── thermalBaffle1D │ │ │ │ │ ├── thermalBaffle1DFvPatchScalarField.cxx-backup │ │ │ │ │ ├── thermalBaffle1DFvPatchScalarField.hxx │ │ │ │ │ ├── thermalBaffle1DFvPatchScalarFieldI.hxx │ │ │ │ │ ├── thermalBaffle1DFvPatchScalarFields.cxx │ │ │ │ │ └── thermalBaffle1DFvPatchScalarFields.hxx │ │ │ │ ├── totalFlowRate │ │ │ │ │ ├── totalFlowRateAdvectiveDiffusiveFvPatchScalarField.cxx │ │ │ │ │ └── totalFlowRateAdvectiveDiffusiveFvPatchScalarField.hxx │ │ │ │ ├── wallFuns │ │ │ │ │ └── alphats │ │ │ │ │ │ ├── alphat │ │ │ │ │ │ ├── alphatWallFunctionFvPatchScalarField.cxx │ │ │ │ │ │ └── alphatWallFunctionFvPatchScalarField.hxx │ │ │ │ │ │ └── alphatJayatilleke │ │ │ │ │ │ ├── alphatJayatillekeWallFunctionFvPatchScalarField.cxx │ │ │ │ │ │ └── alphatJayatillekeWallFunctionFvPatchScalarField.hxx │ │ │ │ └── wallHeatTransfer │ │ │ │ │ ├── wallHeatTransferFvPatchScalarField.cxx │ │ │ │ │ └── wallHeatTransferFvPatchScalarField.hxx │ │ │ ├── turbulentFluidThermoModel.cxx-backup │ │ │ ├── turbulentFluidThermoModel.hxx │ │ │ ├── turbulentFluidThermoModelI.hxx │ │ │ ├── turbulentFluidThermoModels.cxx │ │ │ └── turbulentFluidThermoModels.hxx │ │ ├── RAS │ │ │ └── buoyantKEpsilon │ │ │ │ ├── buoyantKEpsilon.cxx-backup │ │ │ │ ├── buoyantKEpsilon.hxx │ │ │ │ └── buoyantKEpsilonI.hxx │ │ ├── ThermalDiffusivity │ │ │ ├── ThermalDiffusivity.cxx-backup │ │ │ ├── ThermalDiffusivity.hxx │ │ │ └── ThermalDiffusivityI.hxx │ │ ├── compressibleTurbulenceModel.cxx │ │ └── compressibleTurbulenceModel.hxx │ │ ├── incompressible │ │ ├── IncompressibleTurbulenceModel │ │ │ ├── IncompressibleTurbulenceModelTemplate.cxx-backup │ │ │ ├── IncompressibleTurbulenceModelTemplate.hxx │ │ │ └── IncompressibleTurbulenceModelTemplateI.hxx │ │ ├── TransportModels │ │ │ ├── RAS │ │ │ │ ├── LamBremhorstKE │ │ │ │ │ ├── LamBremhorstKE.cxx │ │ │ │ │ └── LamBremhorstKE.hxx │ │ │ │ ├── LienCubicKE │ │ │ │ │ ├── LienCubicKE.cxx │ │ │ │ │ └── LienCubicKE.hxx │ │ │ │ ├── LienLeschziner │ │ │ │ │ ├── LienLeschziner.cxx │ │ │ │ │ └── LienLeschziner.hxx │ │ │ │ ├── ShihQuadraticKE │ │ │ │ │ ├── ShihQuadraticKE.cxx │ │ │ │ │ └── ShihQuadraticKE.hxx │ │ │ │ ├── kkLOmega │ │ │ │ │ ├── kkLOmega.cxx │ │ │ │ │ └── kkLOmega.hxx │ │ │ │ └── qZeta │ │ │ │ │ ├── qZeta.cxx │ │ │ │ │ └── qZeta.hxx │ │ │ ├── derivedFvPatchFields │ │ │ │ └── wallFuns │ │ │ │ │ └── alphats │ │ │ │ │ └── alphatJayatilleke │ │ │ │ │ ├── incompressibleAlphatJayatillekeWallFunctionFvPatchScalarField.cxx │ │ │ │ │ └── incompressibleAlphatJayatillekeWallFunctionFvPatchScalarField.hxx │ │ │ ├── turbulentTransportModel.cxx-backup │ │ │ ├── turbulentTransportModel.hxx │ │ │ ├── turbulentTransportModelI.hxx │ │ │ ├── turbulentTransportModels.cxx │ │ │ └── turbulentTransportModels.hxx │ │ ├── incompressibleTurbulenceModel.cxx │ │ └── incompressibleTurbulenceModel.hxx │ │ ├── module │ │ └── Turbulence_Module.hxx │ │ ├── phaseCompressible │ │ ├── LES │ │ │ └── continuousGasKEqn │ │ │ │ ├── continuousGasKEqn.cxx │ │ │ │ ├── continuousGasKEqn.hxx │ │ │ │ └── continuousGasKEqnI.hxx │ │ └── PhaseCompressibleTurbulenceModel │ │ │ ├── PhaseCompressibleTurbulenceModel.cxx-backup │ │ │ ├── PhaseCompressibleTurbulenceModel.hxx │ │ │ └── PhaseCompressibleTurbulenceModelI.hxx │ │ ├── phaseIncompressible │ │ └── PhaseIncompressibleTurbulenceModel │ │ │ ├── PhaseIncompressibleTurbulenceModel.cxx-backup │ │ │ ├── PhaseIncompressibleTurbulenceModel.hxx │ │ │ └── PhaseIncompressibleTurbulenceModelI.hxx │ │ └── turbulenceModels │ │ ├── Base │ │ └── kOmegaSST │ │ │ ├── kOmegaSSTBase.cxx-backup │ │ │ ├── kOmegaSSTBase.hxx │ │ │ └── kOmegaSSTBaseI.hxx │ │ ├── LES │ │ ├── DeardorffDiffStress │ │ │ ├── DeardorffDiffStress.cxx-backup │ │ │ ├── DeardorffDiffStress.hxx │ │ │ └── DeardorffDiffStressI.hxx │ │ ├── LESModel │ │ │ ├── LESModel.cxx-backup │ │ │ ├── LESModel.hxx │ │ │ └── LESModelI.hxx │ │ ├── LESdeltas │ │ │ ├── IDDESDelta │ │ │ │ ├── IDDESDelta.cxx │ │ │ │ └── IDDESDelta.hxx │ │ │ ├── LESdelta │ │ │ │ ├── LESdelta.cxx │ │ │ │ └── LESdelta.hxx │ │ │ ├── PrandtlDelta │ │ │ │ ├── PrandtlDelta.cxx │ │ │ │ └── PrandtlDelta.hxx │ │ │ ├── cubeRootVolDelta │ │ │ │ ├── cubeRootVolDelta.cxx │ │ │ │ └── cubeRootVolDelta.hxx │ │ │ ├── maxDeltaxyz │ │ │ │ ├── maxDeltaxyz.cxx │ │ │ │ └── maxDeltaxyz.hxx │ │ │ ├── smoothDelta │ │ │ │ ├── smoothDelta.cxx │ │ │ │ ├── smoothDelta.hxx │ │ │ │ └── smoothDeltaDeltaDataI.hxx │ │ │ └── vanDriestDelta │ │ │ │ ├── vanDriestDelta.cxx │ │ │ │ └── vanDriestDelta.hxx │ │ ├── LESeddyViscosity │ │ │ ├── LESeddyViscosity.cxx-backup │ │ │ ├── LESeddyViscosity.hxx │ │ │ └── LESeddyViscosityI.hxx │ │ ├── LESfilters │ │ │ ├── LESfilter │ │ │ │ ├── LESfilter.cxx │ │ │ │ └── LESfilter.hxx │ │ │ ├── anisotropicFilter │ │ │ │ ├── anisotropicFilter.cxx │ │ │ │ └── anisotropicFilter.hxx │ │ │ ├── laplaceFilter │ │ │ │ ├── laplaceFilter.cxx │ │ │ │ └── laplaceFilter.hxx │ │ │ └── simpleFilter │ │ │ │ ├── simpleFilter.cxx │ │ │ │ └── simpleFilter.hxx │ │ ├── Smagorinsky │ │ │ ├── Smagorinsky.cxx-backup │ │ │ ├── Smagorinsky.hxx │ │ │ └── SmagorinskyI.hxx │ │ ├── SpalartAllmarasDDES │ │ │ ├── SpalartAllmarasDDES.cxx-backup │ │ │ ├── SpalartAllmarasDDES.hxx │ │ │ └── SpalartAllmarasDDESI.hxx │ │ ├── SpalartAllmarasDES │ │ │ ├── SpalartAllmarasDES.cxx-backup │ │ │ ├── SpalartAllmarasDES.hxx │ │ │ └── SpalartAllmarasDESI.hxx │ │ ├── SpalartAllmarasIDDES │ │ │ ├── SpalartAllmarasIDDES.cxx-backup │ │ │ ├── SpalartAllmarasIDDES.hxx │ │ │ └── SpalartAllmarasIDDESI.hxx │ │ ├── WALE │ │ │ ├── WALE.cxx-backup │ │ │ ├── WALE.hxx │ │ │ └── WALEI.hxx │ │ ├── dynamicKEqn │ │ │ ├── dynamicKEqn.cxx-backup │ │ │ ├── dynamicKEqn.hxx │ │ │ └── dynamicKEqnI.hxx │ │ ├── dynamicLagrangian │ │ │ ├── dynamicLagrangian.cxx-backup │ │ │ ├── dynamicLagrangian.hxx │ │ │ └── dynamicLagrangianI.hxx │ │ ├── kEqn │ │ │ ├── kEqn.cxx-backup │ │ │ ├── kEqn.hxx │ │ │ └── kEqnI.hxx │ │ └── kOmegaSSTDES │ │ │ ├── kOmegaSSTDES.cxx-backup │ │ │ ├── kOmegaSSTDES.hxx │ │ │ └── kOmegaSSTDESI.hxx │ │ ├── RAS │ │ ├── LRR │ │ │ ├── LRR.cxx-backup │ │ │ ├── LRR.hxx │ │ │ └── LRRI.hxx │ │ ├── LaunderSharmaKE │ │ │ ├── LaunderSharmaKE.cxx-backup │ │ │ ├── LaunderSharmaKE.hxx │ │ │ └── LaunderSharmaKEI.hxx │ │ ├── RASModel │ │ │ ├── RASModel.cxx-backup │ │ │ ├── RASModel.hxx │ │ │ └── RASModelI.hxx │ │ ├── RNGkEpsilon │ │ │ ├── RNGkEpsilon.cxx-backup │ │ │ ├── RNGkEpsilon.hxx │ │ │ └── RNGkEpsilonI.hxx │ │ ├── SSG │ │ │ ├── SSG.cxx-backup │ │ │ ├── SSG.hxx │ │ │ └── SSGI.hxx │ │ ├── SpalartAllmaras │ │ │ ├── SpalartAllmaras.cxx-backup │ │ │ ├── SpalartAllmaras.hxx │ │ │ └── SpalartAllmarasI.hxx │ │ ├── derivedFvPatchFields │ │ │ ├── MixingLengthDissipationRateInlet │ │ │ │ ├── turbulentMixingLengthDissipationRateInletFvPatchScalarField.cxx │ │ │ │ └── turbulentMixingLengthDissipationRateInletFvPatchScalarField.hxx │ │ │ └── MixingLengthFrequencyInlet │ │ │ │ ├── turbulentMixingLengthFrequencyInletFvPatchScalarField.cxx │ │ │ │ └── turbulentMixingLengthFrequencyInletFvPatchScalarField.hxx │ │ ├── kEpsilon │ │ │ ├── kEpsilon.cxx-backup │ │ │ ├── kEpsilon.hxx │ │ │ └── kEpsilonI.hxx │ │ ├── kOmega │ │ │ ├── kOmega.cxx-backup │ │ │ ├── kOmega.hxx │ │ │ └── kOmegaI.hxx │ │ ├── kOmegaSST │ │ │ ├── kOmegaSST.cxx-backup │ │ │ ├── kOmegaSST.hxx │ │ │ └── kOmegaSSTI.hxx │ │ ├── kOmegaSSTLM │ │ │ ├── kOmegaSSTLM.cxx-backup │ │ │ ├── kOmegaSSTLM.hxx │ │ │ └── kOmegaSSTLMI.hxx │ │ ├── kOmegaSSTSAS │ │ │ ├── kOmegaSSTSAS.cxx-backup │ │ │ ├── kOmegaSSTSAS.hxx │ │ │ └── kOmegaSSTSASI.hxx │ │ ├── realizableKE │ │ │ ├── realizableKE.cxx-backup │ │ │ ├── realizableKE.hxx │ │ │ └── realizableKEI.hxx │ │ └── v2f │ │ │ ├── v2f.cxx-backup │ │ │ ├── v2f.hxx │ │ │ ├── v2fBase.cxx │ │ │ ├── v2fBase.hxx │ │ │ └── v2fI.hxx │ │ ├── ReynoldsStress │ │ ├── ReynoldsStress.cxx-backup │ │ ├── ReynoldsStress.hxx │ │ └── ReynoldsStressI.hxx │ │ ├── TurbulenceModel │ │ ├── TurbulenceModelTemplate.cxx-backup │ │ ├── TurbulenceModelTemplate.hxx │ │ └── TurbulenceModelTemplateI.hxx │ │ ├── derivedFvPatchFields │ │ ├── fixedShearStress │ │ │ ├── fixedShearStressFvPatchVectorField.cxx │ │ │ └── fixedShearStressFvPatchVectorField.hxx │ │ ├── porousBafflePressure │ │ │ ├── porousBafflePressureFvPatchField.cxx │ │ │ ├── porousBafflePressureFvPatchField.hxx │ │ │ └── porousBafflePressureFvPatchFieldFwd.hxx │ │ └── wallFunctions │ │ │ ├── epsilonWallFunctions │ │ │ └── epsilon │ │ │ │ ├── epsilonWallFunctionFvPatchScalarField.cxx │ │ │ │ └── epsilonWallFunctionFvPatchScalarField.hxx │ │ │ ├── fWallFunctions │ │ │ └── f │ │ │ │ ├── fWallFunctionFvPatchScalarField.cxx │ │ │ │ └── fWallFunctionFvPatchScalarField.hxx │ │ │ ├── kqRWallFunctions │ │ │ ├── kLowRe │ │ │ │ ├── kLowReWallFunctionFvPatchScalarField.cxx │ │ │ │ └── kLowReWallFunctionFvPatchScalarField.hxx │ │ │ └── kqR │ │ │ │ ├── kqRWallFunctionFvPatchField.cxx-backup │ │ │ │ ├── kqRWallFunctionFvPatchField.hxx │ │ │ │ ├── kqRWallFunctionFvPatchFieldI.hxx │ │ │ │ ├── kqRWallFunctionFvPatchFields.cxx │ │ │ │ └── kqRWallFunctionFvPatchFields.hxx │ │ │ ├── nutWallFunctions │ │ │ ├── nut │ │ │ │ ├── nutWallFunctionFvPatchScalarField.cxx │ │ │ │ └── nutWallFunctionFvPatchScalarField.hxx │ │ │ ├── nutLowRe │ │ │ │ ├── nutLowReWallFunctionFvPatchScalarField.cxx │ │ │ │ └── nutLowReWallFunctionFvPatchScalarField.hxx │ │ │ ├── nutU │ │ │ │ ├── nutUWallFunctionFvPatchScalarField.cxx │ │ │ │ └── nutUWallFunctionFvPatchScalarField.hxx │ │ │ ├── nutURough │ │ │ │ ├── nutURoughWallFunctionFvPatchScalarField.cxx │ │ │ │ └── nutURoughWallFunctionFvPatchScalarField.hxx │ │ │ ├── nutUSpalding │ │ │ │ ├── nutUSpaldingWallFunctionFvPatchScalarField.cxx │ │ │ │ └── nutUSpaldingWallFunctionFvPatchScalarField.hxx │ │ │ ├── nutUTabulated │ │ │ │ ├── nutUTabulatedWallFunctionFvPatchScalarField.cxx │ │ │ │ └── nutUTabulatedWallFunctionFvPatchScalarField.hxx │ │ │ ├── nutk │ │ │ │ ├── nutkWallFunctionFvPatchScalarField.cxx │ │ │ │ └── nutkWallFunctionFvPatchScalarField.hxx │ │ │ └── nutkRough │ │ │ │ ├── nutkRoughWallFunctionFvPatchScalarField.cxx │ │ │ │ └── nutkRoughWallFunctionFvPatchScalarField.hxx │ │ │ ├── omegaWallFunctions │ │ │ └── omega │ │ │ │ ├── omegaWallFunctionFvPatchScalarField.cxx │ │ │ │ └── omegaWallFunctionFvPatchScalarField.hxx │ │ │ └── v2WallFunctions │ │ │ └── v2 │ │ │ ├── v2WallFunctionFvPatchScalarField.cxx │ │ │ └── v2WallFunctionFvPatchScalarField.hxx │ │ ├── eddyViscosity │ │ ├── eddyViscosity.cxx-backup │ │ ├── eddyViscosity.hxx │ │ └── eddyViscosityI.hxx │ │ ├── laminar │ │ ├── Giesekus │ │ │ ├── Giesekus.cxx-backup │ │ │ ├── Giesekus.hxx │ │ │ └── GiesekusI.hxx │ │ ├── Maxwell │ │ │ ├── Maxwell.cxx-backup │ │ │ ├── Maxwell.hxx │ │ │ └── MaxwellI.hxx │ │ ├── Stokes │ │ │ ├── Stokes.cxx-backup │ │ │ ├── Stokes.hxx │ │ │ └── StokesI.hxx │ │ ├── generalizedNewtonian │ │ │ ├── Models │ │ │ │ ├── BirdCarreau │ │ │ │ │ ├── BirdCarreau.cxx │ │ │ │ │ └── BirdCarreau.hxx │ │ │ │ ├── Casson │ │ │ │ │ ├── Casson.cxx │ │ │ │ │ └── Casson.hxx │ │ │ │ ├── CrossPowerLaw │ │ │ │ │ ├── CrossPowerLaw.cxx │ │ │ │ │ └── CrossPowerLaw.hxx │ │ │ │ ├── HerschelBulkley │ │ │ │ │ ├── HerschelBulkley.cxx │ │ │ │ │ └── HerschelBulkley.hxx │ │ │ │ ├── Model │ │ │ │ │ ├── generalizedNewtonianViscosityModel.cxx │ │ │ │ │ ├── generalizedNewtonianViscosityModel.hxx │ │ │ │ │ └── generalizedNewtonianViscosityModelNew.cxx │ │ │ │ ├── powerLaw │ │ │ │ │ ├── powerLawGeneralizedNewtonian.cxx │ │ │ │ │ └── powerLawGeneralizedNewtonian.hxx │ │ │ │ └── strainRateFunction │ │ │ │ │ ├── strainRateFunction.cxx │ │ │ │ │ └── strainRateFunction.hxx │ │ │ ├── generalizedNewtonian.cxx-backup │ │ │ ├── generalizedNewtonian.hxx │ │ │ └── generalizedNewtonianI.hxx │ │ └── laminarModel │ │ │ ├── laminarModelTemplate.cxx-backup │ │ │ ├── laminarModelTemplate.hxx │ │ │ └── laminarModelTemplateI.hxx │ │ ├── linearViscousStress │ │ ├── linearViscousStress.cxx-backup │ │ ├── linearViscousStress.hxx │ │ └── linearViscousStressI.hxx │ │ ├── makeTurbulenceModel.hxx │ │ ├── nonlinearEddyViscosity │ │ ├── nonlinearEddyViscosity.cxx-backup │ │ ├── nonlinearEddyViscosity.hxx │ │ └── nonlinearEddyViscosityI.hxx │ │ ├── turbulenceModel.cxx │ │ └── turbulenceModel.hxx ├── TnbTurbulence.vcxproj ├── TnbTurbulence.vcxproj.filters └── include │ ├── BirdCarreau.hxx │ ├── Casson.hxx │ ├── CompressibleTurbulenceModelTemplate.hxx │ ├── CompressibleTurbulenceModelTemplateI.hxx │ ├── CrossPowerLaw.hxx │ ├── DeardorffDiffStress.hxx │ ├── DeardorffDiffStressI.hxx │ ├── EddyDiffusivity.hxx │ ├── EddyDiffusivityI.hxx │ ├── Giesekus.hxx │ ├── GiesekusI.hxx │ ├── HerschelBulkley.hxx │ ├── IDDESDelta.hxx │ ├── IncompressibleTurbulenceModelTemplate.hxx │ ├── IncompressibleTurbulenceModelTemplateI.hxx │ ├── LESModel.hxx │ ├── LESModelI.hxx │ ├── LESdelta.hxx │ ├── LESeddyViscosity.hxx │ ├── LESeddyViscosityI.hxx │ ├── LESfilter.hxx │ ├── LRR.hxx │ ├── LRRI.hxx │ ├── LamBremhorstKE.hxx │ ├── LaunderSharmaKE.hxx │ ├── LaunderSharmaKEI.hxx │ ├── LienCubicKE.hxx │ ├── LienLeschziner.hxx │ ├── Maxwell.hxx │ ├── MaxwellI.hxx │ ├── PhaseCompressibleTurbulenceModel.hxx │ ├── PhaseCompressibleTurbulenceModelI.hxx │ ├── PhaseIncompressibleTurbulenceModel.hxx │ ├── PhaseIncompressibleTurbulenceModelI.hxx │ ├── PrandtlDelta.hxx │ ├── RASModel.hxx │ ├── RASModelI.hxx │ ├── RNGkEpsilon.hxx │ ├── RNGkEpsilonI.hxx │ ├── ReynoldsStress.hxx │ ├── ReynoldsStressI.hxx │ ├── SSG.hxx │ ├── SSGI.hxx │ ├── ShihQuadraticKE.hxx │ ├── Smagorinsky.hxx │ ├── SmagorinskyI.hxx │ ├── SpalartAllmaras.hxx │ ├── SpalartAllmarasDDES.hxx │ ├── SpalartAllmarasDDESI.hxx │ ├── SpalartAllmarasDES.hxx │ ├── SpalartAllmarasDESI.hxx │ ├── SpalartAllmarasI.hxx │ ├── SpalartAllmarasIDDES.hxx │ ├── SpalartAllmarasIDDESI.hxx │ ├── Stokes.hxx │ ├── StokesI.hxx │ ├── ThermalDiffusivity.hxx │ ├── ThermalDiffusivityI.hxx │ ├── TurbulenceModelTemplate.hxx │ ├── TurbulenceModelTemplateI.hxx │ ├── Turbulence_Module.hxx │ ├── WALE.hxx │ ├── WALEI.hxx │ ├── alphatJayatillekeWallFunctionFvPatchScalarField.hxx │ ├── alphatWallFunctionFvPatchScalarField.hxx │ ├── anisotropicFilter.hxx │ ├── buoyantKEpsilon.hxx │ ├── buoyantKEpsilonI.hxx │ ├── compressibleMakeTurbulenceModel.hxx │ ├── compressibleTurbulenceModel.hxx │ ├── continuousGasKEqn.hxx │ ├── continuousGasKEqnI.hxx │ ├── convectiveHeatTransferFvPatchScalarField.hxx │ ├── cubeRootVolDelta.hxx │ ├── dynamicKEqn.hxx │ ├── dynamicKEqnI.hxx │ ├── dynamicLagrangian.hxx │ ├── dynamicLagrangianI.hxx │ ├── eddyViscosity.hxx │ ├── eddyViscosityI.hxx │ ├── epsilonWallFunctionFvPatchScalarField.hxx │ ├── externalCoupledTemperatureMixedFvPatchScalarField.hxx │ ├── externalWallHeatFluxTemperatureFvPatchScalarField.hxx │ ├── fWallFunctionFvPatchScalarField.hxx │ ├── fixedShearStressFvPatchVectorField.hxx │ ├── generalizedNewtonian.hxx │ ├── generalizedNewtonianI.hxx │ ├── generalizedNewtonianViscosityModel.hxx │ ├── incompressibleAlphatJayatillekeWallFunctionFvPatchScalarField.hxx │ ├── incompressibleTurbulenceModel.hxx │ ├── kEpsilon.hxx │ ├── kEpsilonI.hxx │ ├── kEqn.hxx │ ├── kEqnI.hxx │ ├── kLowReWallFunctionFvPatchScalarField.hxx │ ├── kOmega.hxx │ ├── kOmegaI.hxx │ ├── kOmegaSST.hxx │ ├── kOmegaSSTBase.hxx │ ├── kOmegaSSTBaseI.hxx │ ├── kOmegaSSTDES.hxx │ ├── kOmegaSSTDESI.hxx │ ├── kOmegaSSTI.hxx │ ├── kOmegaSSTLM.hxx │ ├── kOmegaSSTLMI.hxx │ ├── kOmegaSSTSAS.hxx │ ├── kOmegaSSTSASI.hxx │ ├── kkLOmega.hxx │ ├── kqRWallFunctionFvPatchField.hxx │ ├── kqRWallFunctionFvPatchFieldI.hxx │ ├── kqRWallFunctionFvPatchFields.hxx │ ├── laminarModelTemplate.hxx │ ├── laminarModelTemplateI.hxx │ ├── laplaceFilter.hxx │ ├── linearViscousStress.hxx │ ├── linearViscousStressI.hxx │ ├── makeTurbulenceModel.hxx │ ├── maxDeltaxyz.hxx │ ├── nonlinearEddyViscosity.hxx │ ├── nonlinearEddyViscosityI.hxx │ ├── nutLowReWallFunctionFvPatchScalarField.hxx │ ├── nutURoughWallFunctionFvPatchScalarField.hxx │ ├── nutUSpaldingWallFunctionFvPatchScalarField.hxx │ ├── nutUTabulatedWallFunctionFvPatchScalarField.hxx │ ├── nutUWallFunctionFvPatchScalarField.hxx │ ├── nutWallFunctionFvPatchScalarField.hxx │ ├── nutkRoughWallFunctionFvPatchScalarField.hxx │ ├── nutkWallFunctionFvPatchScalarField.hxx │ ├── omegaWallFunctionFvPatchScalarField.hxx │ ├── porousBafflePressureFvPatchField.hxx │ ├── porousBafflePressureFvPatchFieldFwd.hxx │ ├── powerLaw.hxx │ ├── powerLawGeneralizedNewtonian.hxx │ ├── qZeta.hxx │ ├── realizableKE.hxx │ ├── realizableKEI.hxx │ ├── simpleFilter.hxx │ ├── smoothDelta.hxx │ ├── smoothDeltaDeltaDataI.hxx │ ├── strainRateFunction.hxx │ ├── temperatureCoupledBase.hxx │ ├── thermalBaffle1DFvPatchScalarField.hxx │ ├── thermalBaffle1DFvPatchScalarFieldI.hxx │ ├── thermalBaffle1DFvPatchScalarFields.hxx │ ├── totalFlowRateAdvectiveDiffusiveFvPatchScalarField.hxx │ ├── turbulenceModel.hxx │ ├── turbulentFluidThermoModel.hxx │ ├── turbulentFluidThermoModelI.hxx │ ├── turbulentFluidThermoModels.hxx │ ├── turbulentMixingLengthDissipationRateInletFvPatchScalarField.hxx │ ├── turbulentMixingLengthFrequencyInletFvPatchScalarField.hxx │ ├── turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.hxx │ ├── turbulentTemperatureRadCoupledMixedFvPatchScalarField.hxx │ ├── turbulentTransportModel.hxx │ ├── turbulentTransportModelI.hxx │ ├── turbulentTransportModels.hxx │ ├── v2WallFunctionFvPatchScalarField.hxx │ ├── v2f.hxx │ ├── v2fBase.hxx │ ├── v2fI.hxx │ ├── vanDriestDelta.hxx │ └── wallHeatTransferFvPatchScalarField.hxx ├── TnbWave ├── TnbLib │ └── waves │ │ ├── derivedFvPatchFields │ │ ├── waveAlpha │ │ │ ├── waveAlphaFvPatchScalarField.cxx │ │ │ └── waveAlphaFvPatchScalarField.hxx │ │ ├── waveInletOutlet │ │ │ ├── waveInletOutletFvPatchField.cxx-backup │ │ │ ├── waveInletOutletFvPatchField.hxx │ │ │ ├── waveInletOutletFvPatchFieldI.hxx │ │ │ ├── waveInletOutletFvPatchFields.cxx │ │ │ ├── waveInletOutletFvPatchFields.hxx │ │ │ └── waveInletOutletFvPatchFieldsFwd.hxx │ │ ├── wavePressure │ │ │ ├── wavePressureFvPatchScalarField.cxx │ │ │ └── wavePressureFvPatchScalarField.hxx │ │ └── waveVelocity │ │ │ ├── waveVelocityFvPatchVectorField.cxx │ │ │ └── waveVelocityFvPatchVectorField.hxx │ │ ├── module │ │ └── Wave_Module.hxx │ │ ├── waveModels │ │ ├── Airy │ │ │ ├── Airy.cxx │ │ │ └── Airy.hxx │ │ ├── Stokes2 │ │ │ ├── Stokes2.cxx │ │ │ └── Stokes2.hxx │ │ ├── Stokes5 │ │ │ ├── Stokes5.cxx │ │ │ └── Stokes5.hxx │ │ ├── solitary │ │ │ ├── solitary.cxx │ │ │ └── solitary.hxx │ │ └── waveModel │ │ │ ├── newWaveModel.cxx │ │ │ ├── waveModel.cxx │ │ │ └── waveModel.hxx │ │ └── waveSuperpositions │ │ ├── waveAtmBoundaryLayerSuperposition │ │ ├── waveAtmBoundaryLayerSuperposition.cxx │ │ └── waveAtmBoundaryLayerSuperposition.hxx │ │ └── waveSuperposition │ │ ├── newWaveSuperposition.cxx │ │ ├── waveSuperposition.cxx │ │ └── waveSuperposition.hxx ├── TnbWave.vcxproj ├── TnbWave.vcxproj.filters └── include │ ├── Airy.hxx │ ├── Stokes2.hxx │ ├── Stokes5.hxx │ ├── Wave_Module.hxx │ ├── solitary.hxx │ ├── waveAlphaFvPatchScalarField.hxx │ ├── waveAtmBoundaryLayerSuperposition.hxx │ ├── waveInletOutletFvPatchField.hxx │ ├── waveInletOutletFvPatchFieldI.hxx │ ├── waveInletOutletFvPatchFields.hxx │ ├── waveInletOutletFvPatchFieldsFwd.hxx │ ├── waveModel.hxx │ ├── wavePressureFvPatchScalarField.hxx │ ├── waveSuperposition.hxx │ └── waveVelocityFvPatchVectorField.hxx ├── TnbfvAgglomerationMethods ├── TnbLib │ └── fvAgglomerationMethods │ │ ├── module │ │ └── FvAgglomerationMethods_Module.hxx │ │ └── pairPatchAgglomeration │ │ ├── pairPatchAgglomeration.cxx │ │ ├── pairPatchAgglomeration.hxx │ │ └── pairPatchAgglomerationI.hxx ├── TnbfvAgglomerationMethods.vcxproj ├── TnbfvAgglomerationMethods.vcxproj.filters └── include │ ├── FvAgglomerationMethods_Module.hxx │ ├── pairPatchAgglomeration.hxx │ └── pairPatchAgglomerationI.hxx ├── applications ├── solvers │ ├── DNS │ │ └── dnsFoam │ │ │ ├── createFields.lxx │ │ │ ├── dnsFoam.cxx │ │ │ ├── dnsFoam.vcxproj │ │ │ ├── dnsFoam.vcxproj.filters │ │ │ ├── globalProperties.lxx │ │ │ ├── readTransportProperties.lxx │ │ │ └── readTurbulenceProperties.lxx │ ├── basic │ │ ├── laplacianFoam │ │ │ ├── createFields.lxx │ │ │ ├── laplacianFoam.cxx │ │ │ ├── laplacianFoam.vcxproj │ │ │ ├── laplacianFoam.vcxproj.filters │ │ │ └── write.lxx │ │ ├── potentialFoam │ │ │ ├── createControls.lxx │ │ │ ├── createFields.lxx │ │ │ ├── potentialFoam.cxx │ │ │ ├── potentialFoam.vcxproj │ │ │ └── potentialFoam.vcxproj.filters │ │ └── scalarTransportFoam │ │ │ ├── createFields.lxx │ │ │ ├── scalarTransportFoam.cxx │ │ │ ├── scalarTransportFoam.vcxproj │ │ │ └── scalarTransportFoam.vcxproj.filters │ ├── combustion │ │ ├── PDRFoam │ │ │ ├── EaEqn.lxx │ │ │ ├── EauEqn.lxx │ │ │ ├── PDRFoam.cxx │ │ │ ├── PDRFoam.vcxproj │ │ │ ├── PDRFoam.vcxproj.filters │ │ │ ├── PDRFoamAutoRefine.cxx │ │ │ ├── PDRModels │ │ │ │ ├── XiEqModels │ │ │ │ │ └── basicXiSubXiEq │ │ │ │ │ │ ├── basicXiSubXiEq.cxx │ │ │ │ │ │ └── basicXiSubXiEq.hxx │ │ │ │ ├── XiGModels │ │ │ │ │ └── basicXiSubG │ │ │ │ │ │ ├── basicXiSubG.cxx │ │ │ │ │ │ └── basicXiSubG.hxx │ │ │ │ ├── dragModels │ │ │ │ │ ├── PDRDragModel │ │ │ │ │ │ ├── PDRDragModel.cxx │ │ │ │ │ │ ├── PDRDragModel.hxx │ │ │ │ │ │ └── PDRDragModelNew.cxx │ │ │ │ │ └── basic │ │ │ │ │ │ ├── basic.cxx │ │ │ │ │ │ └── basic.hxx │ │ │ │ └── turbulence │ │ │ │ │ └── PDRkEpsilon │ │ │ │ │ ├── PDRkEpsilon.cxx │ │ │ │ │ └── PDRkEpsilon.hxx │ │ │ ├── StCourantNo.lxx │ │ │ ├── UEqn.lxx │ │ │ ├── XiModels │ │ │ │ ├── XiEqModels │ │ │ │ │ ├── Gulder │ │ │ │ │ │ ├── Gulder.C │ │ │ │ │ │ ├── Gulder.H │ │ │ │ │ │ ├── Gulder.cxx │ │ │ │ │ │ └── Gulder.hxx │ │ │ │ │ ├── SCOPEBlendXiEq │ │ │ │ │ │ ├── SCOPEBlendXiEq.C │ │ │ │ │ │ ├── SCOPEBlendXiEq.H │ │ │ │ │ │ ├── SCOPEBlendXiEq.cxx │ │ │ │ │ │ └── SCOPEBlendXiEq.hxx │ │ │ │ │ ├── SCOPEXiEq │ │ │ │ │ │ ├── SCOPEXiEq.C │ │ │ │ │ │ ├── SCOPEXiEq.H │ │ │ │ │ │ ├── SCOPEXiEq.cxx │ │ │ │ │ │ └── SCOPEXiEq.hxx │ │ │ │ │ ├── XiEqModel │ │ │ │ │ │ ├── XiEqModel.C │ │ │ │ │ │ ├── XiEqModel.H │ │ │ │ │ │ ├── XiEqModel.cxx │ │ │ │ │ │ ├── XiEqModel.hxx │ │ │ │ │ │ ├── XiEqModelNew.C │ │ │ │ │ │ └── XiEqModelNew.cxx │ │ │ │ │ └── instabilityXiEq │ │ │ │ │ │ ├── instabilityXiEq.C │ │ │ │ │ │ ├── instabilityXiEq.H │ │ │ │ │ │ ├── instabilityXiEq.cxx │ │ │ │ │ │ └── instabilityXiEq.hxx │ │ │ │ ├── XiGModels │ │ │ │ │ ├── KTS │ │ │ │ │ │ ├── KTS.C │ │ │ │ │ │ ├── KTS.H │ │ │ │ │ │ ├── KTS.cxx │ │ │ │ │ │ └── KTS.hxx │ │ │ │ │ ├── XiGModel │ │ │ │ │ │ ├── XiGModel.C │ │ │ │ │ │ ├── XiGModel.H │ │ │ │ │ │ ├── XiGModel.cxx │ │ │ │ │ │ ├── XiGModel.hxx │ │ │ │ │ │ ├── XiGModelNew.C │ │ │ │ │ │ └── XiGModelNew.cxx │ │ │ │ │ └── instabilityG │ │ │ │ │ │ ├── instabilityG.C │ │ │ │ │ │ ├── instabilityG.H │ │ │ │ │ │ ├── instabilityG.cxx │ │ │ │ │ │ └── instabilityG.hxx │ │ │ │ ├── XiModel │ │ │ │ │ ├── XiModel.C │ │ │ │ │ ├── XiModel.H │ │ │ │ │ ├── XiModel.cxx │ │ │ │ │ ├── XiModel.hxx │ │ │ │ │ ├── XiModelNew.C │ │ │ │ │ └── XiModelNew.cxx │ │ │ │ ├── algebraic │ │ │ │ │ ├── algebraic.C │ │ │ │ │ ├── algebraic.H │ │ │ │ │ ├── algebraic.cxx │ │ │ │ │ └── algebraic.hxx │ │ │ │ ├── fixed │ │ │ │ │ ├── fixed.C │ │ │ │ │ ├── fixed.H │ │ │ │ │ ├── fixed.cxx │ │ │ │ │ └── fixed.hxx │ │ │ │ └── transport │ │ │ │ │ ├── transport.C │ │ │ │ │ ├── transport.H │ │ │ │ │ ├── transport.cxx │ │ │ │ │ └── transport.hxx │ │ │ ├── bEqn.lxx │ │ │ ├── createFieldRefs.lxx │ │ │ ├── createFields.lxx │ │ │ ├── ftEqn.lxx │ │ │ ├── laminarFlameSpeed │ │ │ │ └── SCOPE │ │ │ │ │ ├── SCOPELaminarFlameSpeed.cxx │ │ │ │ │ └── SCOPELaminarFlameSpeed.hxx │ │ │ ├── pEqn.lxx │ │ │ ├── readCombustionProperties.lxx │ │ │ ├── rhoEqn.lxx │ │ │ └── setDeltaT.lxx │ │ ├── XiFoam │ │ │ ├── EaEqn.lxx │ │ │ ├── EauEqn.lxx │ │ │ ├── UEqn.lxx │ │ │ ├── XiEngineFoam │ │ │ │ ├── UEqn.lxx │ │ │ │ ├── XiEngineFoam.cxx │ │ │ │ ├── XiEngineFoam.vcxproj │ │ │ │ ├── XiEngineFoam.vcxproj.filters │ │ │ │ ├── logSummary.lxx │ │ │ │ ├── pEqn.lxx │ │ │ │ └── startSummary.lxx │ │ │ ├── XiFoam.cxx │ │ │ ├── XiFoam.vcxproj │ │ │ ├── XiFoam.vcxproj.filters │ │ │ ├── bEqn.lxx │ │ │ ├── createFieldRefs.lxx │ │ │ ├── createFields.lxx │ │ │ ├── ftEqn.lxx │ │ │ ├── pEqn.lxx │ │ │ └── readCombustionProperties.lxx │ │ ├── chemFoam │ │ │ ├── YEqn.lxx │ │ │ ├── chemFoam.cxx │ │ │ ├── chemFoam.vcxproj │ │ │ ├── chemFoam.vcxproj.filters │ │ │ ├── createBaseFields.lxx │ │ │ ├── createControls.lxx │ │ │ ├── createFieldRefs.lxx │ │ │ ├── createFields.lxx │ │ │ ├── createSingleCellMesh.lxx │ │ │ ├── hEqn.lxx │ │ │ ├── output.lxx │ │ │ ├── pEqn.lxx │ │ │ ├── readControls.lxx │ │ │ ├── readInitialConditions.lxx │ │ │ ├── setDeltaT.lxx │ │ │ ├── solveChemistry.lxx │ │ │ └── thermoTypeFunctions.hxx │ │ ├── coldEngineFoam │ │ │ ├── coldEngineFoam.cxx │ │ │ ├── coldEngineFoam.vcxproj │ │ │ ├── coldEngineFoam.vcxproj.filters │ │ │ ├── createFieldRefs.lxx │ │ │ ├── createFields.lxx │ │ │ ├── logSummary.lxx │ │ │ └── startSummary.lxx │ │ ├── fireFoam │ │ │ ├── UEqn.lxx │ │ │ ├── YEEqn.lxx │ │ │ ├── createClouds.lxx │ │ │ ├── createFieldRefs.lxx │ │ │ ├── createFields.lxx │ │ │ ├── createPyrolysisModel.lxx │ │ │ ├── createSurfaceFilmModel.lxx │ │ │ ├── fireFoam.cxx │ │ │ ├── fireFoam.vcxproj │ │ │ ├── fireFoam.vcxproj.filters │ │ │ ├── pEqn.lxx │ │ │ ├── phrghEqn.lxx │ │ │ ├── readPyrolysisTimeControls.lxx │ │ │ ├── rhoEqn.lxx │ │ │ ├── setMultiRegionDeltaT.lxx │ │ │ └── solidRegionDiffusionNo.lxx │ │ └── reactingFoam │ │ │ ├── EEqn.lxx │ │ │ ├── UEqn.lxx │ │ │ ├── YEqn.lxx │ │ │ ├── createFieldRefs.lxx │ │ │ ├── createFields.lxx │ │ │ ├── pEqn.lxx │ │ │ ├── pcEqn.lxx │ │ │ ├── reactingFoam.cxx │ │ │ ├── reactingFoam.vcxproj │ │ │ ├── reactingFoam.vcxproj.filters │ │ │ ├── rhoReactingBuoyantFoam │ │ │ ├── UEqn.lxx │ │ │ ├── createFieldRefs.lxx │ │ │ ├── createFields.lxx │ │ │ ├── pEqn.lxx │ │ │ ├── rhoReactingBuoyantFoam.cxx │ │ │ ├── rhoReactingBuoyantFoam.vcxproj │ │ │ └── rhoReactingBuoyantFoam.vcxproj.filters │ │ │ ├── rhoReactingFoam │ │ │ ├── createFieldRefs.lxx │ │ │ ├── createFields.lxx │ │ │ ├── rhoReactingFoam.cxx │ │ │ ├── rhoReactingFoam.vcxproj │ │ │ └── rhoReactingFoam.vcxproj.filters │ │ │ └── setRDeltaT.lxx │ ├── compressible │ │ ├── rhoCentralFoam │ │ │ ├── BCs │ │ │ │ ├── T │ │ │ │ │ ├── smoluchowskiJumpTFvPatchScalarField.cxx │ │ │ │ │ └── smoluchowskiJumpTFvPatchScalarField.hxx │ │ │ │ ├── U │ │ │ │ │ ├── maxwellSlipUFvPatchVectorField.cxx │ │ │ │ │ └── maxwellSlipUFvPatchVectorField.hxx │ │ │ │ ├── mixedFixedValueSlip │ │ │ │ │ ├── mixedFixedValueSlipFvPatchField.cxx │ │ │ │ │ ├── mixedFixedValueSlipFvPatchField.hxx │ │ │ │ │ ├── mixedFixedValueSlipFvPatchFieldI.hxx │ │ │ │ │ ├── mixedFixedValueSlipFvPatchFields.cxx │ │ │ │ │ ├── mixedFixedValueSlipFvPatchFields.hxx │ │ │ │ │ └── mixedFixedValueSlipFvPatchFieldsFwd.hxx │ │ │ │ └── rho │ │ │ │ │ ├── fixedRhoFvPatchScalarField.cxx │ │ │ │ │ └── fixedRhoFvPatchScalarField.hxx │ │ │ ├── centralCourantNo.lxx │ │ │ ├── createFieldRefs.lxx │ │ │ ├── createFields.lxx │ │ │ ├── directionInterpolate.lxx │ │ │ ├── readFluxScheme.lxx │ │ │ ├── rhoCentralFoam.cxx │ │ │ ├── rhoCentralFoam.vcxproj │ │ │ ├── rhoCentralFoam.vcxproj.filters │ │ │ └── setRDeltaT.lxx │ │ ├── rhoPimpleFoam │ │ │ ├── EEqn.lxx │ │ │ ├── UEqn.lxx │ │ │ ├── correctPhi.lxx │ │ │ ├── createFieldRefs.lxx │ │ │ ├── createFields.lxx │ │ │ ├── pEqn.lxx │ │ │ ├── pcEqn.lxx │ │ │ ├── rhoPimpleFoam.cxx │ │ │ ├── rhoPimpleFoam.vcxproj │ │ │ ├── rhoPimpleFoam.vcxproj.filters │ │ │ └── setRDeltaT.lxx │ │ ├── rhoPorousSimpleFoam │ │ │ ├── UEqn.lxx │ │ │ ├── createZones.lxx │ │ │ ├── pEqn.lxx │ │ │ ├── rhoPorousSimpleFoam.cxx │ │ │ ├── rhoPorousSimpleFoam.vcxproj │ │ │ └── rhoPorousSimpleFoam.vcxproj.filters │ │ └── rhoSimpleFoam │ │ │ ├── EEqn.lxx │ │ │ ├── UEqn.lxx │ │ │ ├── createFieldRefs.lxx │ │ │ ├── createFields.lxx │ │ │ ├── pEqn.lxx │ │ │ ├── pcEqn.lxx │ │ │ ├── rhoSimpleFoam.cxx │ │ │ ├── rhoSimpleFoam.vcxproj │ │ │ └── rhoSimpleFoam.vcxproj.filters │ ├── discreteMethods │ │ ├── dsmc │ │ │ └── dsmcFoam │ │ │ │ ├── createFields.lxx │ │ │ │ ├── dsmcFoam.cxx │ │ │ │ ├── dsmcFoam.vcxproj │ │ │ │ └── dsmcFoam.vcxproj.filters │ │ └── molecularDynamics │ │ │ ├── mdEquilibrationFoam │ │ │ ├── mdEquilibrationFoam.cxx │ │ │ ├── mdEquilibrationFoam.vcxproj │ │ │ ├── mdEquilibrationFoam.vcxproj.filters │ │ │ └── readmdEquilibrationDict.lxx │ │ │ └── mdFoam │ │ │ ├── createFields.lxx │ │ │ ├── mdFoam.cxx │ │ │ ├── mdFoam.vcxproj │ │ │ └── mdFoam.vcxproj.filters │ ├── electromagnetics │ │ ├── electrostaticFoam │ │ │ ├── createFields.lxx │ │ │ ├── electrostaticFoam.cxx │ │ │ ├── electrostaticFoam.vcxproj │ │ │ └── electrostaticFoam.vcxproj.filters │ │ ├── magneticFoam │ │ │ ├── createFields.lxx │ │ │ ├── magnet.hxx │ │ │ ├── magneticFoam.cxx │ │ │ ├── magneticFoam.vcxproj │ │ │ └── magneticFoam.vcxproj.filters │ │ └── mhdFoam │ │ │ ├── createControl.lxx │ │ │ ├── createFields.lxx │ │ │ ├── createPhiB.lxx │ │ │ ├── magneticFieldErr.lxx │ │ │ ├── mhdFoam.cxx │ │ │ ├── mhdFoam.vcxproj │ │ │ ├── mhdFoam.vcxproj.filters │ │ │ └── readBPISOControls.lxx │ ├── financial │ │ └── financialFoam │ │ │ ├── createFields.lxx │ │ │ ├── financialFoam.cxx │ │ │ ├── financialFoam.vcxproj │ │ │ └── financialFoam.vcxproj.filters │ ├── heatTransfer │ │ ├── buoyantPimpleFoam │ │ │ ├── EEqn.lxx │ │ │ ├── UEqn.lxx │ │ │ ├── buoyantPimpleFoam.cxx │ │ │ ├── buoyantPimpleFoam.lxx │ │ │ ├── buoyantPimpleFoam.vcxproj │ │ │ ├── buoyantPimpleFoam.vcxproj.filters │ │ │ ├── createFieldRefs.lxx │ │ │ ├── createFields.lxx │ │ │ └── pEqn.lxx │ │ ├── buoyantSimpleFoam │ │ │ ├── EEqn.lxx │ │ │ ├── UEqn.lxx │ │ │ ├── buoyantSimpleFoam.cxx │ │ │ ├── buoyantSimpleFoam.vcxproj │ │ │ ├── buoyantSimpleFoam.vcxproj.filters │ │ │ ├── createFieldRefs.lxx │ │ │ ├── createFields.lxx │ │ │ └── pEqn.lxx │ │ ├── chtMultiRegionFoam │ │ │ ├── EEqn.lxx │ │ │ ├── UEqn.lxx │ │ │ ├── YEqn.lxx │ │ │ ├── chtMultiRegionFoam.cxx │ │ │ ├── chtMultiRegionFoam.vcxproj │ │ │ ├── chtMultiRegionFoam.vcxproj.filters │ │ │ ├── compressibleCourantNo.cxx │ │ │ ├── compressibleCourantNo.hxx │ │ │ ├── compressibleMultiRegionCourantNo.lxx │ │ │ ├── createFields.lxx │ │ │ ├── createFluidFields.lxx │ │ │ ├── createFluidMeshes.lxx │ │ │ ├── createFluidPressureControls.lxx │ │ │ ├── createMeshes.lxx │ │ │ ├── createMeshesPostProcess.lxx │ │ │ ├── createSolidFields.lxx │ │ │ ├── createSolidMeshes.lxx │ │ │ ├── initContinuityErrs.lxx │ │ │ ├── pEqn.lxx │ │ │ ├── readSolidTimeControls.lxx │ │ │ ├── setInitialMultiRegionDeltaT.lxx │ │ │ ├── setMultiRegionDeltaT.lxx │ │ │ ├── setRegionFluidFields.lxx │ │ │ ├── setRegionSolidFields.lxx │ │ │ ├── solidRegionDiffNo.cxx │ │ │ ├── solidRegionDiffNo.hxx │ │ │ ├── solidRegionDiffusionNo.lxx │ │ │ ├── solveFluid.lxx │ │ │ └── solveSolid.lxx │ │ └── thermoFoam │ │ │ ├── EEqn.lxx │ │ │ ├── createFields.lxx │ │ │ ├── setAlphaEff.lxx │ │ │ ├── thermoFoam.cxx │ │ │ ├── thermoFoam.vcxproj │ │ │ └── thermoFoam.vcxproj.filters │ ├── incompressible │ │ ├── adjointShapeOptimizationFoam │ │ │ ├── adjointContinuityErrs.lxx │ │ │ ├── adjointOutletPressure │ │ │ │ ├── adjointOutletPressureFvPatchScalarField.cxx │ │ │ │ └── adjointOutletPressureFvPatchScalarField.hxx │ │ │ ├── adjointOutletVelocity │ │ │ │ ├── adjointOutletVelocityFvPatchVectorField.cxx │ │ │ │ └── adjointOutletVelocityFvPatchVectorField.hxx │ │ │ ├── adjointShapeOptimizationFoam.cxx │ │ │ ├── adjointShapeOptimizationFoam.vcxproj │ │ │ ├── adjointShapeOptimizationFoam.vcxproj.filters │ │ │ ├── createFields.lxx │ │ │ ├── createPhia.lxx │ │ │ └── initAdjointContinuityErrs.lxx │ │ ├── boundaryFoam │ │ │ ├── boundaryFoam.cxx │ │ │ ├── boundaryFoam.vcxproj │ │ │ ├── boundaryFoam.vcxproj.filters │ │ │ ├── createFields.lxx │ │ │ ├── evaluateNearWall.lxx │ │ │ ├── interrogateWallPatches.lxx │ │ │ └── makeGraphs.lxx │ │ ├── icoFoam │ │ │ ├── createFields.lxx │ │ │ ├── icoFoam.cxx │ │ │ ├── icoFoam.vcxproj │ │ │ └── icoFoam.vcxproj.filters │ │ ├── nonNewtonianIcoFoam │ │ │ ├── createFields.lxx │ │ │ ├── nonNewtonianIcoFoam.cxx │ │ │ ├── nonNewtonianIcoFoam.vcxproj │ │ │ └── nonNewtonianIcoFoam.vcxproj.filters │ │ ├── pimpleFoam │ │ │ ├── SRFPimpleFoam │ │ │ │ ├── SRFPimpleFoam.cxx │ │ │ │ ├── SRFPimpleFoam.vcxproj │ │ │ │ ├── SRFPimpleFoam.vcxproj.filters │ │ │ │ ├── UrelEqn.lxx │ │ │ │ ├── createFields.lxx │ │ │ │ └── pEqn.lxx │ │ │ └── pimpleFoam │ │ │ │ ├── UEqn.lxx │ │ │ │ ├── correctPhi.lxx │ │ │ │ ├── createFields.lxx │ │ │ │ ├── pEqn.lxx │ │ │ │ ├── pimpleFoam.cxx │ │ │ │ ├── pimpleFoam.vcxproj │ │ │ │ ├── pimpleFoam.vcxproj.filters │ │ │ │ └── setRDeltaT.lxx │ │ ├── pisoFoam │ │ │ ├── UEqn.lxx │ │ │ ├── createFields.lxx │ │ │ ├── pEqn.lxx │ │ │ ├── pisoFoam.cxx │ │ │ ├── pisoFoam.vcxproj │ │ │ └── pisoFoam.vcxproj.filters │ │ ├── shallowWaterFoam │ │ │ ├── CourantNo.lxx │ │ │ ├── createFields.lxx │ │ │ ├── createPhi.lxx │ │ │ ├── readGravitationalAcceleration.lxx │ │ │ ├── shallowWaterFoam.cxx │ │ │ ├── shallowWaterFoam.vcxproj │ │ │ └── shallowWaterFoam.vcxproj.filters │ │ └── simpleFoam │ │ │ ├── SRFSimpleFoam │ │ │ ├── SRFSimpleFoam.cxx │ │ │ ├── SRFSimpleFoam.vcxproj │ │ │ ├── SRFSimpleFoam.vcxproj.filters │ │ │ ├── UrelEqn.lxx │ │ │ ├── createFields.lxx │ │ │ └── pEqn.lxx │ │ │ ├── porousSimpleFoam │ │ │ ├── UEqn.lxx │ │ │ ├── createFields.lxx │ │ │ ├── createPorousZones.lxx │ │ │ ├── pEqn.lxx │ │ │ ├── porousSimpleFoam.cxx │ │ │ ├── porousSimpleFoam.vcxproj │ │ │ └── porousSimpleFoam.vcxproj.filters │ │ │ └── simpleFoam │ │ │ ├── UEqn.lxx │ │ │ ├── createFields.lxx │ │ │ ├── pEqn.lxx │ │ │ ├── simpleFoam.cxx │ │ │ ├── simpleFoam.vcxproj │ │ │ └── simpleFoam.vcxproj.filters │ ├── lagrangian │ │ ├── DPMFoam │ │ │ ├── CourantNo.lxx │ │ │ ├── DPMFoam.cxx │ │ │ ├── DPMFoam.vcxproj │ │ │ ├── DPMFoam.vcxproj.filters │ │ │ ├── DPMTurbulenceModels.cxx │ │ │ ├── MPPICFoam.cxx │ │ │ ├── UcEqn.lxx │ │ │ ├── continuityErrs.lxx │ │ │ ├── correctPhic.lxx │ │ │ ├── createFields.lxx │ │ │ ├── createUcf.lxx │ │ │ ├── createUcfIfPresent.lxx │ │ │ └── pEqn.lxx │ │ ├── coalChemistryFoam │ │ │ ├── EEqn.lxx │ │ │ ├── UEqn.lxx │ │ │ ├── YEqn.lxx │ │ │ ├── coalChemistryFoam.cxx │ │ │ ├── coalChemistryFoam.vcxproj │ │ │ ├── coalChemistryFoam.vcxproj.filters │ │ │ ├── createClouds.lxx │ │ │ ├── createFieldRefs.lxx │ │ │ ├── createFields.lxx │ │ │ ├── pEqn.lxx │ │ │ ├── rhoEqn.lxx │ │ │ └── setRDeltaT.lxx │ │ ├── createFields │ │ │ ├── createFields.lxx │ │ │ ├── createFields.vcxproj │ │ │ ├── createFields.vcxproj.filters │ │ │ ├── createNonInertialFrameFields.lxx │ │ │ └── icoUncoupledKinematicParcelFoam.cxx │ │ ├── reactingParcelFoam │ │ │ ├── reactingParcelFoam │ │ │ │ ├── EEqn.lxx │ │ │ │ ├── UEqn.lxx │ │ │ │ ├── YEqn.lxx │ │ │ │ ├── createClouds.lxx │ │ │ │ ├── createFieldRefs.lxx │ │ │ │ ├── createFields.lxx │ │ │ │ ├── createSurfaceFilmModel.lxx │ │ │ │ ├── pEqn.lxx │ │ │ │ ├── reactingParcelFoam.cxx │ │ │ │ ├── reactingParcelFoam.vcxproj │ │ │ │ ├── reactingParcelFoam.vcxproj.filters │ │ │ │ ├── rhoEqn.lxx │ │ │ │ ├── setMultiRegionDeltaT.lxx │ │ │ │ └── setRDeltaT.lxx │ │ │ └── simpleReactingParcelFoam │ │ │ │ ├── EEqn.lxx │ │ │ │ ├── UEqn.lxx │ │ │ │ ├── YEqn.lxx │ │ │ │ ├── createClouds.lxx │ │ │ │ ├── createFields.lxx │ │ │ │ ├── pEqn.lxx │ │ │ │ ├── simpleReactingParcelFoam.cxx │ │ │ │ ├── simpleReactingParcelFoam.vcxproj │ │ │ │ └── simpleReactingParcelFoam.vcxproj.filters │ │ ├── sprayFoam │ │ │ ├── engineFoam │ │ │ │ ├── engineFoam.cxx │ │ │ │ ├── engineFoam.vcxproj │ │ │ │ ├── engineFoam.vcxproj.filters │ │ │ │ ├── logSummary.lxx │ │ │ │ └── startSummary.lxx │ │ │ └── sprayFoam │ │ │ │ ├── EEqn.lxx │ │ │ │ ├── UEqn.lxx │ │ │ │ ├── YEqn.lxx │ │ │ │ ├── createClouds.lxx │ │ │ │ ├── createFieldRefs.lxx │ │ │ │ ├── createFields.lxx │ │ │ │ ├── pEqn.lxx │ │ │ │ ├── rhoEqn.lxx │ │ │ │ ├── sprayFoam.cxx │ │ │ │ ├── sprayFoam.vcxproj │ │ │ │ └── sprayFoam.vcxproj.filters │ │ └── uncoupledKinematicParcelFoam │ │ │ ├── createFields.lxx │ │ │ ├── uncoupledKinematicParcelFoam.cxx │ │ │ ├── uncoupledKinematicParcelFoam.vcxproj │ │ │ └── uncoupledKinematicParcelFoam.vcxproj.filters │ ├── multiphase │ │ ├── VoF │ │ │ ├── alphaCourantNo.lxx │ │ │ ├── alphaEqn.lxx │ │ │ ├── alphaEqnSubCycle.lxx │ │ │ ├── createAlphaFluxes.lxx │ │ │ ├── setDeltaT.lxx │ │ │ └── setRDeltaT.lxx │ │ ├── cavitatingFoam │ │ │ ├── CourantNo.lxx │ │ │ ├── UEqn.lxx │ │ │ ├── alphavPsi.lxx │ │ │ ├── cavitatingFoam.cxx │ │ │ ├── cavitatingFoam.lxx │ │ │ ├── cavitatingFoam.vcxproj │ │ │ ├── cavitatingFoam.vcxproj.filters │ │ │ ├── continuityErrs.lxx │ │ │ ├── correctPhi.lxx │ │ │ ├── createControls.lxx │ │ │ ├── createFields.lxx │ │ │ ├── createPcorrTypes.lxx │ │ │ ├── pEqn.lxx │ │ │ ├── readControls.lxx │ │ │ ├── readThermodynamicProperties.lxx │ │ │ ├── rhoEqn.lxx │ │ │ ├── setDeltaT.lxx │ │ │ └── setInitialDeltaT.lxx │ │ ├── compressibleInterFoam │ │ │ ├── compressibleInterFilmFoam │ │ │ │ ├── TEqn.lxx │ │ │ │ ├── VoFPatchTransfer │ │ │ │ │ ├── VoFPatchTransfer.cxx │ │ │ │ │ └── VoFPatchTransfer.hxx │ │ │ │ ├── VoFSolidificationMeltingSource │ │ │ │ │ ├── VoFSolidificationMeltingSource.cxx │ │ │ │ │ ├── VoFSolidificationMeltingSource.hxx │ │ │ │ │ ├── VoFSolidificationMeltingSourceI.hxx │ │ │ │ │ ├── VoFSolidificationMeltingSourceIO.cxx │ │ │ │ │ └── VoFSolidificationMeltingSourceTemplates.cxx-backup │ │ │ │ ├── compressibleInterFilmFoam.cxx │ │ │ │ ├── compressibleInterFilmFoam.vcxproj │ │ │ │ ├── compressibleInterFilmFoam.vcxproj.filters │ │ │ │ ├── createSurfaceFilmModel.lxx │ │ │ │ └── pEqn.lxx │ │ │ ├── compressibleInterFoam │ │ │ │ ├── TEqn.lxx │ │ │ │ ├── UEqn.lxx │ │ │ │ ├── alphaSuSp.lxx │ │ │ │ ├── compressibleAlphaEqnSubCycle.lxx │ │ │ │ ├── compressibleInterFoam.cxx │ │ │ │ ├── compressibleInterFoam.vcxproj │ │ │ │ ├── compressibleInterFoam.vcxproj.filters │ │ │ │ ├── correctPhi.lxx │ │ │ │ ├── createFields.lxx │ │ │ │ ├── pEqn.lxx │ │ │ │ └── rhofs.lxx │ │ │ └── libs │ │ │ │ ├── TnbCompressibleInterFoamLibs.vcxproj │ │ │ │ ├── TnbCompressibleInterFoamLibs.vcxproj.filters │ │ │ │ ├── TnbLib │ │ │ │ ├── VoFphaseCompressibleTurbulenceModels │ │ │ │ │ ├── VoFphaseCompressibleTurbulenceModel.hxx │ │ │ │ │ ├── VoFphaseCompressibleTurbulenceModelFwd.hxx │ │ │ │ │ ├── VoFphaseCompressibleTurbulenceModels.cxx │ │ │ │ │ ├── compressibleInterPhaseTransportModel.cxx │ │ │ │ │ └── compressibleInterPhaseTransportModel.hxx │ │ │ │ ├── module │ │ │ │ │ └── compressibleInterFoamLibs_Module.hxx │ │ │ │ ├── surfaceTensionModels │ │ │ │ │ └── liquidProperties │ │ │ │ │ │ ├── liquidPropertiesSurfaceTension.cxx │ │ │ │ │ │ └── liquidPropertiesSurfaceTension.hxx │ │ │ │ └── twoPhaseMixtureThermo │ │ │ │ │ ├── twoPhaseMixtureThermo.cxx │ │ │ │ │ └── twoPhaseMixtureThermo.hxx │ │ │ │ └── include │ │ │ │ ├── VoFphaseCompressibleTurbulenceModel.hxx │ │ │ │ ├── VoFphaseCompressibleTurbulenceModelFwd.hxx │ │ │ │ ├── compressibleInterFoamLibs_Module.hxx │ │ │ │ ├── compressibleInterPhaseTransportModel.hxx │ │ │ │ ├── liquidPropertiesSurfaceTension.hxx │ │ │ │ └── twoPhaseMixtureThermo.hxx │ │ ├── compressibleMultiphaseInterFoam │ │ │ ├── TEqn.lxx │ │ │ ├── UEqn.lxx │ │ │ ├── compressibleMultiphaseInterFoam.cxx │ │ │ ├── compressibleMultiphaseInterFoam.vcxproj │ │ │ ├── compressibleMultiphaseInterFoam.vcxproj.filters │ │ │ ├── createFields.lxx │ │ │ ├── multiphaseMixtureThermo │ │ │ │ ├── alphaContactAngle │ │ │ │ │ ├── alphaContactAngleFvPatchScalarField.cxx │ │ │ │ │ └── alphaContactAngleFvPatchScalarField.hxx │ │ │ │ ├── multiphaseMixtureThermo.cxx │ │ │ │ ├── multiphaseMixtureThermo.hxx │ │ │ │ └── phaseModel │ │ │ │ │ ├── phaseModel.cxx │ │ │ │ │ └── phaseModel.hxx │ │ │ └── pEqn.lxx │ │ ├── driftFluxFoam │ │ │ ├── UEqn.lxx │ │ │ ├── alphaControls.lxx │ │ │ ├── alphaEqn.lxx │ │ │ ├── alphaEqnSubCycle.lxx │ │ │ ├── compressibleTurbulenceModels.cxx │ │ │ ├── createFields.lxx │ │ │ ├── driftFluxFoam.cxx │ │ │ ├── driftFluxFoam.vcxproj │ │ │ ├── driftFluxFoam.vcxproj.filters │ │ │ ├── incompressibleTwoPhaseInteractingMixture │ │ │ │ ├── incompressibleTwoPhaseInteractingMixture.cxx │ │ │ │ └── incompressibleTwoPhaseInteractingMixture.hxx │ │ │ ├── mixtureViscosityModels │ │ │ │ ├── BinghamPlastic │ │ │ │ │ ├── BinghamPlastic.cxx │ │ │ │ │ └── BinghamPlastic.hxx │ │ │ │ ├── mixtureViscosityModel │ │ │ │ │ ├── mixtureViscosityModel.cxx │ │ │ │ │ ├── mixtureViscosityModel.hxx │ │ │ │ │ └── mixtureViscosityModelNew.cxx │ │ │ │ ├── plastic │ │ │ │ │ ├── plastic.cxx │ │ │ │ │ └── plastic.hxx │ │ │ │ └── slurry │ │ │ │ │ ├── slurry.cxx │ │ │ │ │ └── slurry.hxx │ │ │ ├── pEqn.lxx │ │ │ └── relativeVelocityModels │ │ │ │ ├── general │ │ │ │ ├── general.cxx │ │ │ │ └── general.hxx │ │ │ │ ├── relativeVelocityModel │ │ │ │ ├── relativeVelocityModel.cxx │ │ │ │ └── relativeVelocityModel.hxx │ │ │ │ └── simple │ │ │ │ ├── simple.cxx │ │ │ │ └── simple.hxx │ │ ├── interFoam │ │ │ ├── interFoam │ │ │ │ ├── UEqn.lxx │ │ │ │ ├── alphaSuSp.lxx │ │ │ │ ├── correctPhi.lxx │ │ │ │ ├── createFields.lxx │ │ │ │ ├── initCorrectPhi.lxx │ │ │ │ ├── interFoam.cxx │ │ │ │ ├── interFoam.vcxproj │ │ │ │ ├── interFoam.vcxproj.filters │ │ │ │ ├── pEqn.lxx │ │ │ │ └── rhofs.lxx │ │ │ └── interMixingFoam │ │ │ │ ├── alphaControls.lxx │ │ │ │ ├── alphaEqn.lxx │ │ │ │ ├── alphaEqnSubCycle.lxx │ │ │ │ ├── createFields.lxx │ │ │ │ ├── immiscibleIncompressibleThreePhaseMixture │ │ │ │ ├── immiscibleIncompressibleThreePhaseMixture.cxx │ │ │ │ └── immiscibleIncompressibleThreePhaseMixture.hxx │ │ │ │ ├── incompressibleThreePhaseMixture │ │ │ │ ├── incompressibleThreePhaseMixture.cxx │ │ │ │ └── incompressibleThreePhaseMixture.hxx │ │ │ │ ├── interMixingFoam.cxx │ │ │ │ ├── interMixingFoam.vcxproj │ │ │ │ ├── interMixingFoam.vcxproj.filters │ │ │ │ └── threePhaseInterfaceProperties │ │ │ │ ├── threePhaseInterfaceProperties.cxx │ │ │ │ └── threePhaseInterfaceProperties.hxx │ │ ├── interPhaseChangeFoam │ │ │ ├── UEqn.lxx │ │ │ ├── alphaControls.lxx │ │ │ ├── alphaEqn.lxx │ │ │ ├── alphaEqnSubCycle.lxx │ │ │ ├── correctPhi.lxx │ │ │ ├── createFields.lxx │ │ │ ├── initCorrectPhi.lxx │ │ │ ├── interPhaseChangeFoam.cxx │ │ │ ├── interPhaseChangeFoam.vcxproj │ │ │ ├── interPhaseChangeFoam.vcxproj.filters │ │ │ ├── pEqn.lxx │ │ │ └── phaseChangeTwoPhaseMixtures │ │ │ │ ├── Kunz │ │ │ │ ├── Kunz.cxx │ │ │ │ └── Kunz.hxx │ │ │ │ ├── Merkle │ │ │ │ ├── Merkle.cxx │ │ │ │ └── Merkle.hxx │ │ │ │ ├── SchnerrSauer │ │ │ │ ├── SchnerrSauer.cxx │ │ │ │ └── SchnerrSauer.hxx │ │ │ │ └── phaseChangeTwoPhaseMixture │ │ │ │ ├── newPhaseChangeTwoPhaseMixture.cxx │ │ │ │ ├── phaseChangeTwoPhaseMixture.cxx │ │ │ │ └── phaseChangeTwoPhaseMixture.hxx │ │ ├── multiphaseEulerFoam │ │ │ ├── CourantNo.lxx │ │ │ ├── DDtU.lxx │ │ │ ├── MRFCorrectBCs.lxx │ │ │ ├── TEqns.lxx │ │ │ ├── UEqns.lxx │ │ │ ├── correctPhi.lxx │ │ │ ├── createFields.lxx │ │ │ ├── createMRFZones.lxx │ │ │ ├── interfacialModels │ │ │ │ ├── dragModels │ │ │ │ │ ├── Ergun │ │ │ │ │ │ ├── Ergun.cxx │ │ │ │ │ │ └── Ergun.hxx │ │ │ │ │ ├── Gibilaro │ │ │ │ │ │ ├── Gibilaro.cxx │ │ │ │ │ │ └── Gibilaro.hxx │ │ │ │ │ ├── GidaspowErgunWenYu │ │ │ │ │ │ ├── GidaspowErgunWenYu.cxx │ │ │ │ │ │ └── GidaspowErgunWenYu.hxx │ │ │ │ │ ├── GidaspowSchillerNaumann │ │ │ │ │ │ ├── GidaspowSchillerNaumann.cxx │ │ │ │ │ │ └── GidaspowSchillerNaumann.hxx │ │ │ │ │ ├── SchillerNaumann │ │ │ │ │ │ ├── SchillerNaumann.cxx │ │ │ │ │ │ └── SchillerNaumann.hxx │ │ │ │ │ ├── SyamlalOBrien │ │ │ │ │ │ ├── SyamlalOBrien.cxx │ │ │ │ │ │ └── SyamlalOBrien.hxx │ │ │ │ │ ├── WenYu │ │ │ │ │ │ ├── WenYu.cxx │ │ │ │ │ │ └── WenYu.hxx │ │ │ │ │ ├── blended │ │ │ │ │ │ ├── blended.cxx │ │ │ │ │ │ └── blended.hxx │ │ │ │ │ ├── dragModel │ │ │ │ │ │ ├── dragModel.cxx │ │ │ │ │ │ ├── dragModel.hxx │ │ │ │ │ │ └── newDragModel.cxx │ │ │ │ │ └── interface │ │ │ │ │ │ ├── interface.cxx │ │ │ │ │ │ └── interface.hxx │ │ │ │ └── heatTransferModels │ │ │ │ │ ├── RanzMarshall │ │ │ │ │ ├── RanzMarshall.cxx │ │ │ │ │ └── RanzMarshall.hxx │ │ │ │ │ └── heatTransferModel │ │ │ │ │ ├── heatTransferModel.cxx │ │ │ │ │ ├── heatTransferModel.hxx │ │ │ │ │ └── newHeatTransferModel.cxx │ │ │ ├── multiphaseEulerFoam.cxx │ │ │ ├── multiphaseEulerFoam.vcxproj │ │ │ ├── multiphaseEulerFoam.vcxproj.filters │ │ │ ├── multiphaseSystem │ │ │ │ ├── alphaContactAngle │ │ │ │ │ ├── alphaContactAngleFvPatchScalarField.cxx │ │ │ │ │ └── alphaContactAngleFvPatchScalarField.hxx │ │ │ │ ├── diameterModels │ │ │ │ │ ├── constantDiameter │ │ │ │ │ │ ├── constantDiameter.cxx │ │ │ │ │ │ └── constantDiameter.hxx │ │ │ │ │ ├── diameterModel │ │ │ │ │ │ ├── diameterModel.cxx │ │ │ │ │ │ ├── diameterModel.hxx │ │ │ │ │ │ └── newDiameterModel.cxx │ │ │ │ │ └── isothermalDiameter │ │ │ │ │ │ ├── isothermalDiameter.cxx │ │ │ │ │ │ └── isothermalDiameter.hxx │ │ │ │ ├── multiphaseSystem.cxx │ │ │ │ ├── multiphaseSystem.hxx │ │ │ │ └── phaseModel │ │ │ │ │ ├── phaseModel.cxx │ │ │ │ │ └── phaseModel.hxx │ │ │ ├── pEqn.lxx │ │ │ └── zonePhaseVolumes.lxx │ │ ├── multiphaseInterFoam │ │ │ ├── createFields.lxx │ │ │ ├── multiphaseInterFoam.cxx │ │ │ ├── multiphaseInterFoam.vcxproj │ │ │ ├── multiphaseInterFoam.vcxproj.filters │ │ │ └── multiphaseMixture │ │ │ │ ├── alphaContactAngle │ │ │ │ ├── alphaContactAngleFvPatchScalarField.cxx │ │ │ │ └── alphaContactAngleFvPatchScalarField.hxx │ │ │ │ ├── multiphaseMixture.cxx │ │ │ │ ├── multiphaseMixture.hxx │ │ │ │ └── phase │ │ │ │ ├── phase.cxx │ │ │ │ └── phase.hxx │ │ ├── potentialFreeSurfaceFoam │ │ │ ├── UEqn.lxx │ │ │ ├── correctPhi.lxx │ │ │ ├── createFields.lxx │ │ │ ├── pEqn.lxx │ │ │ ├── potentialFreeSurfaceFoam.cxx │ │ │ ├── potentialFreeSurfaceFoam.vcxproj │ │ │ └── potentialFreeSurfaceFoam.vcxproj.filters │ │ ├── reactingEulerFoam │ │ │ ├── TnbReactingEulerFoamLibs │ │ │ │ ├── TnbLib │ │ │ │ │ ├── derivedFvPatchFields │ │ │ │ │ │ ├── Cole.cxx │ │ │ │ │ │ ├── Cole.hxx │ │ │ │ │ │ ├── KocamustafaogullariIshii.cxx │ │ │ │ │ │ ├── KocamustafaogullariIshii.hxx │ │ │ │ │ │ ├── Lavieville.cxx │ │ │ │ │ │ ├── Lavieville.hxx │ │ │ │ │ │ ├── LemmertChawla.cxx │ │ │ │ │ │ ├── LemmertChawla.hxx │ │ │ │ │ │ ├── TolubinskiKostanchuk.cxx │ │ │ │ │ │ ├── TolubinskiKostanchuk.hxx │ │ │ │ │ │ ├── alphatFixedDmdtWallBoilingWallFunctionFvPatchScalarField.cxx │ │ │ │ │ │ ├── alphatFixedDmdtWallBoilingWallFunctionFvPatchScalarField.hxx │ │ │ │ │ │ ├── alphatPhaseChangeJayatillekeWallFunctionFvPatchScalarField.cxx │ │ │ │ │ │ ├── alphatPhaseChangeJayatillekeWallFunctionFvPatchScalarField.hxx │ │ │ │ │ │ ├── alphatPhaseChangeWallFunctionFvPatchScalarField.cxx │ │ │ │ │ │ ├── alphatPhaseChangeWallFunctionFvPatchScalarField.hxx │ │ │ │ │ │ ├── alphatWallBoilingWallFunctionFvPatchScalarField.cxx │ │ │ │ │ │ ├── alphatWallBoilingWallFunctionFvPatchScalarField.hxx │ │ │ │ │ │ ├── alphatWallBoilingWallFunctionFvPatchScalarFieldNamedEnum.cxx │ │ │ │ │ │ ├── copiedFixedValueFvPatchScalarField.cxx │ │ │ │ │ │ ├── copiedFixedValueFvPatchScalarField.hxx │ │ │ │ │ │ ├── cosine.cxx │ │ │ │ │ │ ├── cosine.hxx │ │ │ │ │ │ ├── departureDiameterModel.cxx │ │ │ │ │ │ ├── departureDiameterModel.hxx │ │ │ │ │ │ ├── departureFrequencyModel.cxx │ │ │ │ │ │ ├── departureFrequencyModel.hxx │ │ │ │ │ │ ├── fixedMultiPhaseHeatFluxFvPatchScalarField.cxx │ │ │ │ │ │ ├── fixedMultiPhaseHeatFluxFvPatchScalarField.hxx │ │ │ │ │ │ ├── linearMultiphasederivedFvPatchFields..cxx │ │ │ │ │ │ ├── linearMultiphasederivedFvPatchFields.hxx │ │ │ │ │ │ ├── newDepartureDiameterModel.cxx │ │ │ │ │ │ ├── newDepartureFrequencyModel.cxx │ │ │ │ │ │ ├── newNucleationSiteModel.cxx │ │ │ │ │ │ ├── newPartitioningModel.cxx │ │ │ │ │ │ ├── nucleationSiteModel.cxx │ │ │ │ │ │ ├── nucleationSiteModel.hxx │ │ │ │ │ │ ├── partitioningModel.cxx │ │ │ │ │ │ ├── partitioningModel.hxx │ │ │ │ │ │ ├── phaseFraction.cxx │ │ │ │ │ │ └── phaseFraction.hxx │ │ │ │ │ ├── functionObjects │ │ │ │ │ │ ├── phaseForces.cxx │ │ │ │ │ │ ├── phaseForces.hxx │ │ │ │ │ │ ├── sizeDistribution.cxx │ │ │ │ │ │ ├── sizeDistribution.hxx │ │ │ │ │ │ └── sizeDistributionNamedEnum.cxx │ │ │ │ │ ├── interfacialCompositionModels │ │ │ │ │ │ ├── Antoine.cxx │ │ │ │ │ │ ├── Antoine.hxx │ │ │ │ │ │ ├── AntoineExtended.cxx │ │ │ │ │ │ ├── AntoineExtended.hxx │ │ │ │ │ │ ├── ArdenBuck.cxx │ │ │ │ │ │ ├── ArdenBuck.hxx │ │ │ │ │ │ ├── Frossling.cxx │ │ │ │ │ │ ├── Frossling.hxx │ │ │ │ │ │ ├── Henry.cxx-backup │ │ │ │ │ │ ├── Henry.hxx │ │ │ │ │ │ ├── HenryI.hxx │ │ │ │ │ │ ├── InterfaceCompositionModelTemplate.cxx-backup │ │ │ │ │ │ ├── InterfaceCompositionModelTemplate.hxx │ │ │ │ │ │ ├── InterfaceCompositionModelTemplateI.hxx │ │ │ │ │ │ ├── InterfaceCompositionModels.cxx │ │ │ │ │ │ ├── NonRandomTwoLiquid.cxx-backup │ │ │ │ │ │ ├── NonRandomTwoLiquid.hxx │ │ │ │ │ │ ├── NonRandomTwoLiquidI.hxx │ │ │ │ │ │ ├── Raoult.cxx-backup │ │ │ │ │ │ ├── Raoult.hxx │ │ │ │ │ │ ├── RaoultI.hxx │ │ │ │ │ │ ├── Saturated.cxx-backup │ │ │ │ │ │ ├── Saturated.hxx │ │ │ │ │ │ ├── SaturatedI.hxx │ │ │ │ │ │ ├── constantSaturationConditions.cxx │ │ │ │ │ │ ├── constantSaturationConditions.hxx │ │ │ │ │ │ ├── constantSurfaceTensionCoefficient.cxx │ │ │ │ │ │ ├── constantSurfaceTensionCoefficient.hxx │ │ │ │ │ │ ├── functionMultiphase.cxx │ │ │ │ │ │ ├── functionMultiphase.hxx │ │ │ │ │ │ ├── interfaceCompositionModel.cxx │ │ │ │ │ │ ├── interfaceCompositionModel.hxx │ │ │ │ │ │ ├── massTransferModel.cxx │ │ │ │ │ │ ├── massTransferModel.hxx │ │ │ │ │ │ ├── newInterfaceCompositionModel.cxx │ │ │ │ │ │ ├── newMassTransferModel.cxx │ │ │ │ │ │ ├── newSaturationModel.cxx │ │ │ │ │ │ ├── newSurfaceTensionModelMultiphase.cxx │ │ │ │ │ │ ├── polynomialMultiphase.cxx │ │ │ │ │ │ ├── polynomialMultiphase.hxx │ │ │ │ │ │ ├── saturationModel.cxx │ │ │ │ │ │ ├── saturationModel.hxx │ │ │ │ │ │ ├── sphericalMassTransfer.cxx │ │ │ │ │ │ ├── sphericalMassTransfer.hxx │ │ │ │ │ │ ├── surfaceTensionModelMultiphase.cxx │ │ │ │ │ │ └── surfaceTensionModelMultiphase.hxx │ │ │ │ │ ├── interfacialModels │ │ │ │ │ │ ├── Antal.cxx │ │ │ │ │ │ ├── Antal.hxx │ │ │ │ │ │ ├── AttouFerschneider.cxx │ │ │ │ │ │ ├── AttouFerschneider.hxx │ │ │ │ │ │ ├── Beetstra.cxx │ │ │ │ │ │ ├── Beetstra.hxx │ │ │ │ │ │ ├── Burns.cxx │ │ │ │ │ │ ├── Burns.hxx │ │ │ │ │ │ ├── Ergun.cxx │ │ │ │ │ │ ├── Ergun.hxx │ │ │ │ │ │ ├── Frank.cxx │ │ │ │ │ │ ├── Frank.hxx │ │ │ │ │ │ ├── Gibilaro.cxx │ │ │ │ │ │ ├── Gibilaro.hxx │ │ │ │ │ │ ├── GidaspowErgunWenYu.cxx │ │ │ │ │ │ ├── GidaspowErgunWenYu.hxx │ │ │ │ │ │ ├── GidaspowSchillerNaumann.cxx │ │ │ │ │ │ ├── GidaspowSchillerNaumann.hxx │ │ │ │ │ │ ├── Gosman.cxx │ │ │ │ │ │ ├── Gosman.hxx │ │ │ │ │ │ ├── IshiiZuber.cxx │ │ │ │ │ │ ├── IshiiZuber.hxx │ │ │ │ │ │ ├── Lain.cxx │ │ │ │ │ │ ├── Lain.hxx │ │ │ │ │ │ ├── Lamb.cxx │ │ │ │ │ │ ├── Lamb.hxx │ │ │ │ │ │ ├── LegendreMagnaudet.cxx │ │ │ │ │ │ ├── LegendreMagnaudet.hxx │ │ │ │ │ │ ├── LopezDeBertodano.cxx │ │ │ │ │ │ ├── LopezDeBertodano.hxx │ │ │ │ │ │ ├── Moraga.cxx │ │ │ │ │ │ ├── Moraga.hxx │ │ │ │ │ │ ├── RanzMarshall.cxx │ │ │ │ │ │ ├── RanzMarshall.hxx │ │ │ │ │ │ ├── SchillerNaumann.cxx │ │ │ │ │ │ ├── SchillerNaumann.hxx │ │ │ │ │ │ ├── SyamlalOBrien.cxx │ │ │ │ │ │ ├── SyamlalOBrien.hxx │ │ │ │ │ │ ├── Tenneti.cxx │ │ │ │ │ │ ├── Tenneti.hxx │ │ │ │ │ │ ├── TomiyamaAnalytic.cxx │ │ │ │ │ │ ├── TomiyamaAnalytic.hxx │ │ │ │ │ │ ├── TomiyamaAspectRatio.cxx │ │ │ │ │ │ ├── TomiyamaAspectRatio.hxx │ │ │ │ │ │ ├── TomiyamaCorrelated.cxx │ │ │ │ │ │ ├── TomiyamaCorrelated.hxx │ │ │ │ │ │ ├── TomiyamaKataokaZunSakaguchi.cxx │ │ │ │ │ │ ├── TomiyamaKataokaZunSakaguchi.hxx │ │ │ │ │ │ ├── TomiyamaLift.cxx │ │ │ │ │ │ ├── TomiyamaLift.hxx │ │ │ │ │ │ ├── TomiyamaSwarm.cxx │ │ │ │ │ │ ├── TomiyamaSwarm.hxx │ │ │ │ │ │ ├── TomiyamaWallLubrication.cxx │ │ │ │ │ │ ├── TomiyamaWallLubrication.hxx │ │ │ │ │ │ ├── VakhrushevEfremov.cxx │ │ │ │ │ │ ├── VakhrushevEfremov.hxx │ │ │ │ │ │ ├── Wellek.cxx │ │ │ │ │ │ ├── Wellek.hxx │ │ │ │ │ │ ├── WenYu.cxx │ │ │ │ │ │ ├── WenYu.hxx │ │ │ │ │ │ ├── aspectRatioModel.cxx │ │ │ │ │ │ ├── aspectRatioModel.hxx │ │ │ │ │ │ ├── constantAspectRatio.cxx │ │ │ │ │ │ ├── constantAspectRatio.hxx │ │ │ │ │ │ ├── constantLiftCoefficient.cxx │ │ │ │ │ │ ├── constantLiftCoefficient.hxx │ │ │ │ │ │ ├── constantNuHeatTransfer.cxx │ │ │ │ │ │ ├── constantNuHeatTransfer.hxx │ │ │ │ │ │ ├── constantTurbulentDispersionCoefficient.cxx │ │ │ │ │ │ ├── constantTurbulentDispersionCoefficient.hxx │ │ │ │ │ │ ├── constantVirtualMassCoefficient.cxx │ │ │ │ │ │ ├── constantVirtualMassCoefficient.hxx │ │ │ │ │ │ ├── cosineWallDamping.cxx │ │ │ │ │ │ ├── cosineWallDamping.hxx │ │ │ │ │ │ ├── deposition.cxx │ │ │ │ │ │ ├── deposition.hxx │ │ │ │ │ │ ├── dragModel.cxx │ │ │ │ │ │ ├── dragModel.hxx │ │ │ │ │ │ ├── heatTransferModel.cxx │ │ │ │ │ │ ├── heatTransferModel.hxx │ │ │ │ │ │ ├── interpolatedWallDamping.cxx │ │ │ │ │ │ ├── interpolatedWallDamping.hxx │ │ │ │ │ │ ├── liftModel.cxx │ │ │ │ │ │ ├── liftModel.hxx │ │ │ │ │ │ ├── linearWallDamping.cxx │ │ │ │ │ │ ├── linearWallDamping.hxx │ │ │ │ │ │ ├── newAspectRatioModel.cxx │ │ │ │ │ │ ├── newDragModel.cxx │ │ │ │ │ │ ├── newHeatTransferModel.cxx │ │ │ │ │ │ ├── newLiftModel.cxx │ │ │ │ │ │ ├── newPhaseTransferModel.cxx │ │ │ │ │ │ ├── newSwarmCorrection.cxx │ │ │ │ │ │ ├── newTurbulentDispersionModel.cxx │ │ │ │ │ │ ├── newVirtualMassModel.cxx │ │ │ │ │ │ ├── newWallDampingModel.cxx │ │ │ │ │ │ ├── newWallLubricationModel.cxx │ │ │ │ │ │ ├── noLift.cxx │ │ │ │ │ │ ├── noLift.hxx │ │ │ │ │ │ ├── noSwarm.cxx │ │ │ │ │ │ ├── noSwarm.hxx │ │ │ │ │ │ ├── noTurbulentDispersion.cxx │ │ │ │ │ │ ├── noTurbulentDispersion.hxx │ │ │ │ │ │ ├── noVirtualMass.cxx │ │ │ │ │ │ ├── noVirtualMass.hxx │ │ │ │ │ │ ├── noWallDamping.cxx │ │ │ │ │ │ ├── noWallDamping.hxx │ │ │ │ │ │ ├── noWallLubrication.cxx │ │ │ │ │ │ ├── noWallLubrication.hxx │ │ │ │ │ │ ├── phaseTransferModel.cxx │ │ │ │ │ │ ├── phaseTransferModel.hxx │ │ │ │ │ │ ├── segregated.cxx │ │ │ │ │ │ ├── segregated.hxx │ │ │ │ │ │ ├── sineWallDamping.cxx │ │ │ │ │ │ ├── sineWallDamping.hxx │ │ │ │ │ │ ├── sphericalHeatTransfer.cxx │ │ │ │ │ │ ├── sphericalHeatTransfer.hxx │ │ │ │ │ │ ├── swarmCorrection.cxx │ │ │ │ │ │ ├── swarmCorrection.hxx │ │ │ │ │ │ ├── turbulentDispersionModel.cxx │ │ │ │ │ │ ├── turbulentDispersionModel.hxx │ │ │ │ │ │ ├── virtualMassModel.cxx │ │ │ │ │ │ ├── virtualMassModel.hxx │ │ │ │ │ │ ├── wallDampedLift.cxx │ │ │ │ │ │ ├── wallDampedLift.hxx │ │ │ │ │ │ ├── wallDampingModel.cxx │ │ │ │ │ │ ├── wallDampingModel.hxx │ │ │ │ │ │ ├── wallDependentModel.cxx │ │ │ │ │ │ ├── wallDependentModel.hxx │ │ │ │ │ │ ├── wallLubricationModel.cxx │ │ │ │ │ │ └── wallLubricationModel.hxx │ │ │ │ │ ├── module │ │ │ │ │ │ └── reactingEulerFoamLibs_Module.hxx │ │ │ │ │ └── phaseSystems │ │ │ │ │ │ ├── AnisothermalPhaseModel.hxx │ │ │ │ │ │ ├── AnisothermalPhaseModelI.hxx │ │ │ │ │ │ ├── BlendedInterfacialModel.cxx-backup │ │ │ │ │ │ ├── BlendedInterfacialModel.hxx │ │ │ │ │ │ ├── BlendedInterfacialModelI.hxx │ │ │ │ │ │ ├── CoulaloglouTavlaridesCoalescence.cxx │ │ │ │ │ │ ├── CoulaloglouTavlaridesCoalescence.hxx │ │ │ │ │ │ ├── InertPhaseModel.hxx │ │ │ │ │ │ ├── InertPhaseModelI.hxx │ │ │ │ │ │ ├── InterfaceCompositionPhaseChangePhaseSystem.hxx │ │ │ │ │ │ ├── InterfaceCompositionPhaseChangePhaseSystemI.hxx │ │ │ │ │ │ ├── IsothermalPhaseModel.hxx │ │ │ │ │ │ ├── IsothermalPhaseModelI.hxx │ │ │ │ │ │ ├── LaakkonenAlopaeusAittamaa.cxx │ │ │ │ │ │ ├── LaakkonenAlopaeusAittamaa.hxx │ │ │ │ │ │ ├── LaakkonenAlopaeusAittamaaDsd.cxx │ │ │ │ │ │ ├── LaakkonenAlopaeusAittamaaDsd.hxx │ │ │ │ │ │ ├── LehrMilliesMewes.cxx │ │ │ │ │ │ ├── LehrMilliesMewes.hxx │ │ │ │ │ │ ├── LehrMilliesMewesCoalescence.cxx │ │ │ │ │ │ ├── LehrMilliesMewesCoalescence.hxx │ │ │ │ │ │ ├── Luo.cxx │ │ │ │ │ │ ├── Luo.hxx │ │ │ │ │ │ ├── LuoSvendsen.cxx │ │ │ │ │ │ ├── LuoSvendsen.hxx │ │ │ │ │ │ ├── MomentumTransferPhaseSystem.hxx │ │ │ │ │ │ ├── MomentumTransferPhaseSystemI.hxx │ │ │ │ │ │ ├── MovingPhaseModel.hxx │ │ │ │ │ │ ├── MovingPhaseModelI.hxx │ │ │ │ │ │ ├── MultiComponentPhaseModel.cxx │ │ │ │ │ │ ├── MultiComponentPhaseModel.hxx │ │ │ │ │ │ ├── MultiComponentPhaseModelI.hxx │ │ │ │ │ │ ├── OneResistanceHeatTransferPhaseSystem.hxx │ │ │ │ │ │ ├── OneResistanceHeatTransferPhaseSystemI.hxx │ │ │ │ │ │ ├── PhaseTransferPhaseSystem.hxx │ │ │ │ │ │ ├── PhaseTransferPhaseSystemI.hxx │ │ │ │ │ │ ├── PopulationBalancePhaseSystem.hxx │ │ │ │ │ │ ├── PopulationBalancePhaseSystemI.hxx │ │ │ │ │ │ ├── PrinceBlanch.cxx │ │ │ │ │ │ ├── PrinceBlanch.hxx │ │ │ │ │ │ ├── PurePhaseModel.hxx │ │ │ │ │ │ ├── PurePhaseModelI.hxx │ │ │ │ │ │ ├── ReactingPhaseModel.hxx │ │ │ │ │ │ ├── ReactingPhaseModelI.hxx │ │ │ │ │ │ ├── StationaryPhaseModel.hxx │ │ │ │ │ │ ├── StationaryPhaseModelI.hxx │ │ │ │ │ │ ├── ThermalPhaseChangePhaseSystem.hxx │ │ │ │ │ │ ├── ThermalPhaseChangePhaseSystemI.hxx │ │ │ │ │ │ ├── ThermoPhaseModel.hxx │ │ │ │ │ │ ├── ThermoPhaseModelI.hxx │ │ │ │ │ │ ├── TwoResistanceHeatTransferPhaseSystem.hxx │ │ │ │ │ │ ├── TwoResistanceHeatTransferPhaseSystemI.hxx │ │ │ │ │ │ ├── binaryBreakupModel.cxx │ │ │ │ │ │ ├── binaryBreakupModel.hxx │ │ │ │ │ │ ├── blendingMethod.cxx │ │ │ │ │ │ ├── blendingMethod.hxx │ │ │ │ │ │ ├── breakupModelMultiphase.cxx │ │ │ │ │ │ ├── breakupModelMultiphase.hxx │ │ │ │ │ │ ├── coalescenceModel.cxx │ │ │ │ │ │ ├── coalescenceModel.hxx │ │ │ │ │ │ ├── constantCoalescence.cxx │ │ │ │ │ │ ├── constantCoalescence.hxx │ │ │ │ │ │ ├── constantDiameter.cxx │ │ │ │ │ │ ├── constantDiameter.hxx │ │ │ │ │ │ ├── constantDrift.cxx │ │ │ │ │ │ ├── constantDrift.hxx │ │ │ │ │ │ ├── constantNucleation.cxx │ │ │ │ │ │ ├── constantNucleation.hxx │ │ │ │ │ │ ├── daughterSizeDistributionModel.cxx │ │ │ │ │ │ ├── daughterSizeDistributionModel.hxx │ │ │ │ │ │ ├── densityChange.cxx │ │ │ │ │ │ ├── densityChange.hxx │ │ │ │ │ │ ├── diameterModel.cxx │ │ │ │ │ │ ├── diameterModel.hxx │ │ │ │ │ │ ├── driftModel.cxx │ │ │ │ │ │ ├── driftModel.hxx │ │ │ │ │ │ ├── exponential.cxx │ │ │ │ │ │ ├── exponential.hxx │ │ │ │ │ │ ├── hRefConstThermos.cxx │ │ │ │ │ │ ├── hydrodynamic.cxx │ │ │ │ │ │ ├── hydrodynamic.hxx │ │ │ │ │ │ ├── hyperbolic.cxx │ │ │ │ │ │ ├── hyperbolic.hxx │ │ │ │ │ │ ├── isothermalDiameter.cxx │ │ │ │ │ │ ├── isothermalDiameter.hxx │ │ │ │ │ │ ├── linearMultiphasePhaseSystem.cxx │ │ │ │ │ │ ├── linearMultiphasePhaseSystem.hxx │ │ │ │ │ │ ├── linearTsubDiameter.cxx │ │ │ │ │ │ ├── linearTsubDiameter.hxx │ │ │ │ │ │ ├── newBlendingMethod.cxx │ │ │ │ │ │ ├── newDiameterModel.cxx │ │ │ │ │ │ ├── newPhaseModel.cxx │ │ │ │ │ │ ├── noBlending.cxx │ │ │ │ │ │ ├── noBlending.hxx │ │ │ │ │ │ ├── nucleationModel.cxx │ │ │ │ │ │ ├── nucleationModel.hxx │ │ │ │ │ │ ├── orderedPhasePair.cxx │ │ │ │ │ │ ├── orderedPhasePair.hxx │ │ │ │ │ │ ├── phaseChange.cxx │ │ │ │ │ │ ├── phaseChange.hxx │ │ │ │ │ │ ├── phaseCompressibleTurbulenceModelFwd.hxx │ │ │ │ │ │ ├── phaseCompressibleTurbulenceModelMultiphase.hxx │ │ │ │ │ │ ├── phaseModel.cxx │ │ │ │ │ │ ├── phaseModel.hxx │ │ │ │ │ │ ├── phaseModels.cxx │ │ │ │ │ │ ├── phasePair.cxx │ │ │ │ │ │ ├── phasePair.hxx │ │ │ │ │ │ ├── phasePairI.hxx │ │ │ │ │ │ ├── phasePairKey.cxx │ │ │ │ │ │ ├── phasePairKey.hxx │ │ │ │ │ │ ├── phaseSystem.cxx │ │ │ │ │ │ ├── phaseSystem.hxx │ │ │ │ │ │ ├── phaseSystemI.hxx │ │ │ │ │ │ ├── populationBalanceModel.cxx │ │ │ │ │ │ ├── populationBalanceModel.hxx │ │ │ │ │ │ ├── populationBalanceModelI.hxx │ │ │ │ │ │ ├── powerLaw.cxx │ │ │ │ │ │ ├── powerLaw.hxx │ │ │ │ │ │ ├── powerLawUniformBinary.cxx │ │ │ │ │ │ ├── powerLawUniformBinary.hxx │ │ │ │ │ │ ├── sizeGroup.cxx │ │ │ │ │ │ ├── sizeGroup.hxx │ │ │ │ │ │ ├── sizeGroupI.hxx │ │ │ │ │ │ ├── uniformBinary.cxx │ │ │ │ │ │ ├── uniformBinary.hxx │ │ │ │ │ │ ├── velocityGroup.cxx │ │ │ │ │ │ ├── velocityGroup.hxx │ │ │ │ │ │ ├── velocityGroupI.hxx │ │ │ │ │ │ ├── wallBoiling.cxx │ │ │ │ │ │ └── wallBoiling.hxx │ │ │ │ ├── TnbReactingEulerFoamLibs.vcxproj │ │ │ │ └── TnbReactingEulerFoamLibs.vcxproj.filters │ │ │ └── reactingMultiphaseEulerFoam │ │ │ │ ├── multiphaseCompressibleTurbulenceModels │ │ │ │ └── multiphaseCompressibleTurbulenceModels.cxx │ │ │ │ ├── reactingMultiphaseEulerFoam.vcxproj │ │ │ │ └── reactingMultiphaseEulerFoam.vcxproj.filters │ │ ├── twoLiquidMixingFoam │ │ │ ├── UEqn.lxx │ │ │ ├── alphaControls.lxx │ │ │ ├── alphaCourantNo.lxx │ │ │ ├── alphaDiffusionEqn.lxx │ │ │ ├── alphaEqn.lxx │ │ │ ├── alphaEqnSubCycle.lxx │ │ │ ├── createFields.lxx │ │ │ ├── pEqn.lxx │ │ │ ├── twoLiquidMixingFoam.cxx │ │ │ ├── twoLiquidMixingFoam.vcxproj │ │ │ └── twoLiquidMixingFoam.vcxproj.filters │ │ └── twoPhaseEulerFoam │ │ │ ├── CourantNos.lxx │ │ │ ├── EEqns.lxx │ │ │ ├── contErrs.lxx │ │ │ ├── correctContErrs.lxx │ │ │ ├── createFieldRefs.lxx │ │ │ ├── createFields.lxx │ │ │ ├── createMRF.lxx │ │ │ ├── interfacialModels │ │ │ ├── aspectRatioModels │ │ │ │ ├── TomiyamaAspectRatioTwoPhase.cxx │ │ │ │ ├── TomiyamaAspectRatioTwoPhase.hxx │ │ │ │ ├── VakhrushevEfremovTwoPhase.cxx │ │ │ │ ├── VakhrushevEfremovTwoPhase.hxx │ │ │ │ ├── WellekTwoPhase.cxx │ │ │ │ ├── WellekTwoPhase.hxx │ │ │ │ ├── aspectRatioModelTwoPhase.cxx │ │ │ │ ├── aspectRatioModelTwoPhase.hxx │ │ │ │ ├── constantAspectRatioTwoPhase.cxx │ │ │ │ ├── constantAspectRatioTwoPhase.hxx │ │ │ │ └── newAspectRatioModelTwoPhase.cxx │ │ │ ├── dragModels │ │ │ │ ├── ErgunTwoPhase.cxx │ │ │ │ ├── ErgunTwoPhase.hxx │ │ │ │ ├── GibilaroTwoPhase.cxx │ │ │ │ ├── GibilaroTwoPhase.hxx │ │ │ │ ├── GidaspowErgunWenYuTwoPhase.cxx │ │ │ │ ├── GidaspowErgunWenYuTwoPhase.hxx │ │ │ │ ├── GidaspowSchillerNaumannTwoPhase.cxx │ │ │ │ ├── GidaspowSchillerNaumannTwoPhase.hxx │ │ │ │ ├── IshiiZuberTwoPhase.cxx │ │ │ │ ├── IshiiZuberTwoPhase.hxx │ │ │ │ ├── LainTwoPhase.cxx │ │ │ │ ├── LainTwoPhase.hxx │ │ │ │ ├── SchillerNaumannTwoPhase.cxx │ │ │ │ ├── SchillerNaumannTwoPhase.hxx │ │ │ │ ├── SyamlalOBrienTwoPhase.cxx │ │ │ │ ├── SyamlalOBrienTwoPhase.hxx │ │ │ │ ├── TomiyamaAnalyticTwoPhase.cxx │ │ │ │ ├── TomiyamaAnalyticTwoPhase.hxx │ │ │ │ ├── TomiyamaCorrelatedTwoPhase.cxx │ │ │ │ ├── TomiyamaCorrelatedTwoPhase.hxx │ │ │ │ ├── WenYuTwoPhase.cxx │ │ │ │ ├── WenYuTwoPhase.hxx │ │ │ │ ├── dragModelTwoPhase.cxx │ │ │ │ ├── dragModelTwoPhase.hxx │ │ │ │ ├── newDragModelTwoPhase.cxx │ │ │ │ ├── segregatedTwoPhase.cxx │ │ │ │ └── segregatedTwoPhase.hxx │ │ │ ├── heatTransferModels │ │ │ │ ├── RanzMarshallTwoPhase.cxx │ │ │ │ ├── RanzMarshallTwoPhase.hxx │ │ │ │ ├── heatTransferModelTwoPhase.cxx │ │ │ │ ├── heatTransferModelTwoPhase.hxx │ │ │ │ ├── newHeatTransferModelTwoPhase.cxx │ │ │ │ ├── sphericalHeatTransferTwoPhase.cxx │ │ │ │ └── sphericalHeatTransferTwoPhase.hxx │ │ │ ├── liftModels │ │ │ │ ├── LegendreMagnaudetTwoPhase.cxx │ │ │ │ ├── LegendreMagnaudetTwoPhase.hxx │ │ │ │ ├── MoragaTwoPhase.cxx │ │ │ │ ├── MoragaTwoPhase.hxx │ │ │ │ ├── TomiyamaLiftTwoPhase.cxx │ │ │ │ ├── TomiyamaLiftTwoPhase.hxx │ │ │ │ ├── constantLiftCoefficientTwoPhase.cxx │ │ │ │ ├── constantLiftCoefficientTwoPhase.hxx │ │ │ │ ├── liftModelTwoPhase.cxx │ │ │ │ ├── liftModelTwoPhase.hxx │ │ │ │ ├── newLiftModelTwoPhase.cxx │ │ │ │ ├── noLiftTwoPhase.cxx │ │ │ │ └── noLiftTwoPhase.hxx │ │ │ ├── swarmCorrections │ │ │ │ ├── TomiyamaSwarmTwoPhase.cxx │ │ │ │ ├── TomiyamaSwarmTwoPhase.hxx │ │ │ │ ├── newSwarmCorrectionTwoPhase.cxx │ │ │ │ ├── noSwarmTwoPhase.cxx │ │ │ │ ├── noSwarmTwoPhase.hxx │ │ │ │ ├── swarmCorrectionTwoPhase.cxx │ │ │ │ └── swarmCorrectionTwoPhase.hxx │ │ │ ├── turbulentDispersionModels │ │ │ │ ├── BurnsTwoPhase.cxx │ │ │ │ ├── BurnsTwoPhase.hxx │ │ │ │ ├── GosmanTwoPhase.cxx │ │ │ │ ├── GosmanTwoPhase.hxx │ │ │ │ ├── LopezDeBertodanoTwoPhase.cxx │ │ │ │ ├── LopezDeBertodanoTwoPhase.hxx │ │ │ │ ├── constantTurbulentDispersionCoefficientTwoPhase.cxx │ │ │ │ ├── constantTurbulentDispersionCoefficientTwoPhase.hxx │ │ │ │ ├── newTurbulentDispersionModelTwoPhase.cxx │ │ │ │ ├── noTurbulentDispersionTwoPhase.cxx │ │ │ │ ├── noTurbulentDispersionTwoPhase.hxx │ │ │ │ ├── turbulentDispersionModelTwoPhase.cxx │ │ │ │ └── turbulentDispersionModelTwoPhase.hxx │ │ │ ├── virtualMassModels │ │ │ │ ├── LambTwoPhase.cxx │ │ │ │ ├── LambTwoPhase.hxx │ │ │ │ ├── constantVirtualMassCoefficientTwoPhase.cxx │ │ │ │ ├── constantVirtualMassCoefficientTwoPhase.hxx │ │ │ │ ├── newVirtualMassModelTwoPhase.cxx │ │ │ │ ├── noVirtualMassTwoPhase.cxx │ │ │ │ ├── noVirtualMassTwoPhase.hxx │ │ │ │ ├── virtualMassModelTwoPhase.cxx │ │ │ │ └── virtualMassModelTwoPhase.hxx │ │ │ ├── wallDependentModel │ │ │ │ ├── wallDependentModelTwoPhase.cxx │ │ │ │ └── wallDependentModelTwoPhase.hxx │ │ │ └── wallLubricationModels │ │ │ │ ├── AntalTwoPhase.cxx │ │ │ │ ├── AntalTwoPhase.hxx │ │ │ │ ├── FrankTwoPhase.cxx │ │ │ │ ├── FrankTwoPhase.hxx │ │ │ │ ├── TomiyamaWallLubricationTwoPhase.cxx │ │ │ │ ├── TomiyamaWallLubricationTwoPhase.hxx │ │ │ │ ├── newWallLubricationModelTwoPhase.cxx │ │ │ │ ├── noWallLubricationTwoPhase.cxx │ │ │ │ ├── noWallLubricationTwoPhase.hxx │ │ │ │ ├── wallLubricationModelTwoPhase.cxx │ │ │ │ └── wallLubricationModelTwoPhase.hxx │ │ │ ├── pU │ │ │ ├── DDtU_pU.lxx │ │ │ ├── UEqns_pU.lxx │ │ │ ├── createDDtU_pU.lxx │ │ │ └── pEqn_pU.lxx │ │ │ ├── pUf │ │ │ ├── DDtU_pUF.lxx │ │ │ ├── UEqns_pUF.lxx │ │ │ ├── createDDtU_pUF.lxx │ │ │ └── pEqn_pUF.lxx │ │ │ ├── phaseCompressibleTurbulenceModels │ │ │ ├── kineticTheoryModels │ │ │ │ ├── conductivityModel │ │ │ │ │ ├── GidaspowConductivityTwoPhase.cxx │ │ │ │ │ ├── GidaspowConductivityTwoPhase.hxx │ │ │ │ │ ├── HrenyaSinclairConductivityTwoPhase.cxx │ │ │ │ │ ├── HrenyaSinclairConductivityTwoPhase.hxx │ │ │ │ │ ├── SyamlalConductivityTwoPhase.cxx │ │ │ │ │ ├── SyamlalConductivityTwoPhase.hxx │ │ │ │ │ ├── conductivityModelTwoPhase.cxx │ │ │ │ │ ├── conductivityModelTwoPhase.hxx │ │ │ │ │ └── newConductivityModelTwoPhase.cxx │ │ │ │ ├── derivedFvPatchFields │ │ │ │ │ ├── JohnsonJacksonParticleSlipFvPatchVectorFieldTwoPhase.cxx │ │ │ │ │ ├── JohnsonJacksonParticleSlipFvPatchVectorFieldTwoPhase.hxx │ │ │ │ │ ├── JohnsonJacksonParticleThetaFvPatchScalarFieldTwoPhase.cxx │ │ │ │ │ └── JohnsonJacksonParticleThetaFvPatchScalarFieldTwoPhase.hxx │ │ │ │ ├── frictionalStressModel │ │ │ │ │ ├── JohnsonJacksonFrictionalStressTwoPhase.cxx │ │ │ │ │ ├── JohnsonJacksonFrictionalStressTwoPhase.hxx │ │ │ │ │ ├── JohnsonJacksonSchaefferFrictionalStressTwoPhase.cxx │ │ │ │ │ ├── JohnsonJacksonSchaefferFrictionalStressTwoPhase.hxx │ │ │ │ │ ├── SchaefferFrictionalStressTwoPhase.cxx │ │ │ │ │ ├── SchaefferFrictionalStressTwoPhase.hxx │ │ │ │ │ ├── frictionalStressModelTwoPhase.cxx │ │ │ │ │ ├── frictionalStressModelTwoPhase.hxx │ │ │ │ │ └── newFrictionalStressModelTwoPhase.cxx │ │ │ │ ├── granularPressureModel │ │ │ │ │ ├── LunPressureTwoPhase.cxx │ │ │ │ │ ├── LunPressureTwoPhase.hxx │ │ │ │ │ ├── SyamlalRogersOBrienPressureTwoPhase.cxx │ │ │ │ │ ├── SyamlalRogersOBrienPressureTwoPhase.hxx │ │ │ │ │ ├── granularPressureModelTwoPhase.cxx │ │ │ │ │ ├── granularPressureModelTwoPhase.hxx │ │ │ │ │ └── newGranularPressureModelTwoPhase.cxx │ │ │ │ ├── kineticTheoryModel │ │ │ │ │ ├── kineticTheoryModelTwoPhase.cxx │ │ │ │ │ └── kineticTheoryModelTwoPhase.hxx │ │ │ │ ├── radialModel │ │ │ │ │ ├── CarnahanStarlingRadialTwoPhase.cxx │ │ │ │ │ ├── CarnahanStarlingRadialTwoPhase.hxx │ │ │ │ │ ├── LunSavageRadialTwoPhase.cxx │ │ │ │ │ ├── LunSavageRadialTwoPhase.hxx │ │ │ │ │ ├── SinclairJacksonRadialTwoPhase.cxx │ │ │ │ │ ├── SinclairJacksonRadialTwoPhase.hxx │ │ │ │ │ ├── newRadialModelTwoPhase.cxx │ │ │ │ │ ├── radialModelTwoPhase.cxx │ │ │ │ │ └── radialModelTwoPhase.hxx │ │ │ │ └── viscosityModel │ │ │ │ │ ├── GidaspowViscosityTwoPhase.cxx │ │ │ │ │ ├── GidaspowViscosityTwoPhase.hxx │ │ │ │ │ ├── HrenyaSinclairViscosityTwoPhase.cxx │ │ │ │ │ ├── HrenyaSinclairViscosityTwoPhase.hxx │ │ │ │ │ ├── SyamlalViscosityTwoPhase.cxx │ │ │ │ │ ├── SyamlalViscosityTwoPhase.hxx │ │ │ │ │ ├── newViscosityModelTwoPhase.cxx │ │ │ │ │ ├── noneViscosityTwoPhase.cxx │ │ │ │ │ ├── noneViscosityTwoPhase.hxx │ │ │ │ │ ├── viscosityModelTwoPhase.cxx │ │ │ │ │ └── viscosityModelTwoPhase.hxx │ │ │ ├── phaseCompressibleTurbulenceModelFwdTwoPhase.hxx │ │ │ ├── phaseCompressibleTurbulenceModelTwoPhase.cxx │ │ │ ├── phaseCompressibleTurbulenceModelTwoPhase.hxx │ │ │ └── phasePressureModel │ │ │ │ ├── phasePressureModelTwoPhase.cxx │ │ │ │ └── phasePressureModelTwoPhase.hxx │ │ │ ├── twoPhaseEulerFoam.cxx │ │ │ ├── twoPhaseEulerFoam.vcxproj │ │ │ ├── twoPhaseEulerFoam.vcxproj.filters │ │ │ ├── twoPhaseSystem │ │ │ ├── BlendedInterfacialModel │ │ │ │ ├── BlendedInterfacialModelTwoPhase.cxx-backup │ │ │ │ ├── BlendedInterfacialModelTwoPhase.hxx │ │ │ │ ├── BlendedInterfacialModelTwoPhaseI.hxx │ │ │ │ ├── blendingMethodTwoPhase.cxx │ │ │ │ ├── blendingMethodTwoPhase.hxx │ │ │ │ ├── hyperbolicTwoPhase.cxx │ │ │ │ ├── hyperbolicTwoPhase.hxx │ │ │ │ ├── linearTwoPhase.cxx │ │ │ │ ├── linearTwoPhase.hxx │ │ │ │ ├── newBlendingMethodTwoPhase.cxx │ │ │ │ ├── noBlendingTwoPhase.cxx │ │ │ │ └── noBlendingTwoPhase.hxx │ │ │ ├── diameterModels │ │ │ │ ├── IATETwoPhase.cxx │ │ │ │ ├── IATETwoPhase.hxx │ │ │ │ ├── IATETwoPhase1.cxx │ │ │ │ ├── IATEsourceTwoPhase.cxx │ │ │ │ ├── IATEsourceTwoPhase.hxx │ │ │ │ ├── constantDiameterTwoPhase.cxx │ │ │ │ ├── constantDiameterTwoPhase.hxx │ │ │ │ ├── diameterModelTwoPhase.cxx │ │ │ │ ├── diameterModelTwoPhase.hxx │ │ │ │ ├── dummyTwoPhase.cxx │ │ │ │ ├── dummyTwoPhase.hxx │ │ │ │ ├── isothermalDiameterTwoPhase.cxx │ │ │ │ ├── isothermalDiameterTwoPhase.hxx │ │ │ │ ├── newDiameterModelTwoPhase.cxx │ │ │ │ ├── randomCoalescenceTwoPhase.cxx │ │ │ │ ├── randomCoalescenceTwoPhase.hxx │ │ │ │ ├── turbulentBreakUpTwoPhase.cxx │ │ │ │ ├── turbulentBreakUpTwoPhase.hxx │ │ │ │ ├── wakeEntrainmentCoalescenceTwoPhase.cxx │ │ │ │ └── wakeEntrainmentCoalescenceTwoPhase.hxx │ │ │ ├── phaseModel │ │ │ │ ├── phaseModelTwoPhase.cxx │ │ │ │ └── phaseModelTwoPhase.hxx │ │ │ ├── phasePair │ │ │ │ ├── orderedPhasePairTwoPhase.cxx │ │ │ │ ├── orderedPhasePairTwoPhase.hxx │ │ │ │ ├── phasePairKeyTwoPhase.cxx │ │ │ │ ├── phasePairKeyTwoPhase.hxx │ │ │ │ ├── phasePairTwoPhase.cxx │ │ │ │ ├── phasePairTwoPhase.hxx │ │ │ │ └── phasePairTwoPhaseI.hxx │ │ │ ├── twoPhaseSystem.cxx │ │ │ ├── twoPhaseSystem.hxx │ │ │ └── twoPhaseSystemI.hxx │ │ │ └── write.lxx │ └── stressAnalysis │ │ ├── solidDisplacementFoam │ │ ├── calculateStress.lxx │ │ ├── createControl.lxx │ │ ├── createControls.lxx │ │ ├── createFields.lxx │ │ ├── hydrostaticDisplacementFvPatchVectorField.cxx │ │ ├── hydrostaticDisplacementFvPatchVectorField.hxx │ │ ├── readMechanicalProperties.lxx │ │ ├── readSolidDisplacementFoamControls.lxx │ │ ├── readThermalProperties.lxx │ │ ├── solidDisplacementFoam.cxx │ │ ├── solidDisplacementFoam.vcxproj │ │ ├── solidDisplacementFoam.vcxproj.filters │ │ ├── tractionDisplacementFvPatchVectorField.cxx │ │ └── tractionDisplacementFvPatchVectorField.hxx │ │ └── solidEquilibriumDisplacementFoam │ │ ├── calculateStress.lxx │ │ ├── createControls.lxx │ │ ├── createFields.lxx │ │ ├── kineticEnergyLimiter.lxx │ │ ├── readSteadyStressFoamControls.lxx │ │ ├── solidEquilibriumDisplacementFoam.cxx │ │ ├── solidEquilibriumDisplacementFoam.vcxproj │ │ ├── solidEquilibriumDisplacementFoam.vcxproj.filters │ │ ├── tractionDisplacementCorrectionFvPatchVectorField.cxx │ │ └── tractionDisplacementCorrectionFvPatchVectorField.hxx ├── test │ ├── BinSum │ │ └── Test-BinSum │ │ │ ├── Test-BinSum.cxx │ │ │ ├── Test-BinSum.vcxproj │ │ │ └── Test-BinSum.vcxproj.filters │ ├── Circulator │ │ └── Test-Circulator │ │ │ ├── Test-Circulator.cxx │ │ │ ├── Test-Circulator.vcxproj │ │ │ └── Test-Circulator.vcxproj.filters │ ├── CompactIOList │ │ └── Test-CompactIOList │ │ │ ├── Test-CompactIOList.cxx │ │ │ ├── Test-CompactIOList.vcxproj │ │ │ └── Test-CompactIOList.vcxproj.filters │ ├── CompactListList │ │ └── Test-CompactListList │ │ │ ├── Test-CompactListList.cxx │ │ │ ├── Test-CompactListList.vcxproj │ │ │ └── Test-CompactListList.vcxproj.filters │ ├── DLList │ │ └── Test-DLList │ │ │ ├── Test-DLList.cxx │ │ │ ├── Test-DLList.vcxproj │ │ │ └── Test-DLList.vcxproj.filters │ ├── Dictionary │ │ ├── Test-DictionaryTemp │ │ │ ├── Test-DictionaryTemp.cxx │ │ │ ├── Test-DictionaryTemp.vcxproj │ │ │ ├── Test-DictionaryTemp.vcxproj.filters │ │ │ ├── testDict │ │ │ ├── testDict2 │ │ │ ├── testDictInc │ │ │ ├── testDictRegex │ │ │ └── value │ │ └── Test-dictionary │ │ │ ├── Test-dictionary.cxx │ │ │ ├── Test-dictionary.vcxproj │ │ │ ├── Test-dictionary.vcxproj.filters │ │ │ ├── testDict │ │ │ ├── testDict2 │ │ │ ├── testDictInc │ │ │ ├── testDictRegex │ │ │ └── value │ ├── Distribution │ │ └── Test-Distribution │ │ │ ├── Test-Distribution.cxx │ │ │ ├── Test-Distribution.vcxproj │ │ │ └── Test-Distribution.vcxproj.filters │ ├── DynamicField │ │ └── Test-DynamicField │ │ │ ├── Test-DynamicField.cxx │ │ │ ├── Test-DynamicField.vcxproj │ │ │ └── Test-DynamicField.vcxproj.filters │ ├── DynamicList │ │ └── test-DynamicList │ │ │ ├── test-DynamicList.cxx │ │ │ ├── test-DynamicList.vcxproj │ │ │ └── test-DynamicList.vcxproj.filters │ ├── FixedList │ │ └── Test-FixedList │ │ │ ├── Test-FixedList.cxx │ │ │ ├── Test-FixedList.vcxproj │ │ │ └── Test-FixedList.vcxproj.filters │ ├── Function1 │ │ └── Test-Function1 │ │ │ ├── Test-Function1.cxx │ │ │ ├── Test-Function1.vcxproj │ │ │ ├── Test-Function1.vcxproj.filters │ │ │ └── function1Properties │ ├── GAMGAgglomeration │ │ └── Test-GAMGAgglomeration │ │ │ ├── Test-GAMGAgglomeration.vcxproj │ │ │ ├── Test-GAMGAgglomeration.vcxproj.filters │ │ │ └── test-GAMGAgglomeration.cxx │ ├── HashPtrTable │ │ └── Test-HashPtrTable │ │ │ ├── Test-HashPtrTable.cxx │ │ │ ├── Test-HashPtrTable.vcxproj │ │ │ └── Test-HashPtrTable.vcxproj.filters │ ├── HashSet │ │ └── Test-HashSet │ │ │ ├── Test-HashSet.cxx │ │ │ ├── Test-HashSet.vcxproj │ │ │ └── Test-HashSet.vcxproj.filters │ ├── HashTable │ │ └── Test-HashTable │ │ │ ├── Test-HashTable.cxx │ │ │ ├── Test-HashTable.vcxproj │ │ │ └── Test-HashTable.vcxproj.filters │ ├── HashTable2 │ │ └── Test-HashTable2 │ │ │ ├── Test-HashTable2.cxx │ │ │ ├── Test-HashTable2.vcxproj │ │ │ └── Test-HashTable2.vcxproj.filters │ ├── HashTable3 │ │ └── Test-HashTable3 │ │ │ ├── Test-HashTable3.cxx │ │ │ ├── Test-HashTable3.vcxproj │ │ │ └── Test-HashTable3.vcxproj.filters │ ├── Hashing │ │ └── Test-Hashing │ │ │ ├── Test-Hashing.cxx │ │ │ ├── Test-Hashing.vcxproj │ │ │ └── Test-Hashing.vcxproj.filters │ ├── IOField │ │ └── Test-IOField │ │ │ ├── Test-IOField.cxx │ │ │ ├── Test-IOField.vcxproj │ │ │ └── Test-IOField.vcxproj.filters │ ├── ISLList │ │ └── Test-ISLList │ │ │ ├── Test-ISLList.cxx │ │ │ ├── Test-ISLList.vcxproj │ │ │ └── Test-ISLList.vcxproj.filters │ ├── IStringStream │ │ └── Test-IStringStream │ │ │ ├── Test-IStringStream.cxx │ │ │ ├── Test-IStringStream.vcxproj │ │ │ └── Test-IStringStream.vcxproj.filters │ ├── IndirectList │ │ └── Test-IndirectList │ │ │ ├── Test-IndirectList.cxx │ │ │ ├── Test-IndirectList.vcxproj │ │ │ └── Test-IndirectList.vcxproj.filters │ ├── List │ │ └── Test-List │ │ │ ├── Test-List.cxx │ │ │ ├── Test-List.vcxproj │ │ │ └── Test-List.vcxproj.filters │ ├── ListHashTable │ │ └── Test-ListHashTable │ │ │ ├── Test-ListHashTable.cxx │ │ │ ├── Test-ListHashTable.vcxproj │ │ │ └── Test-ListHashTable.vcxproj.filters │ ├── ListOps │ │ └── Test-ListOps │ │ │ ├── Test-ListOps.cxx │ │ │ ├── Test-ListOps.vcxproj │ │ │ └── Test-ListOps.vcxproj.filters │ ├── Map │ │ └── Test-Map │ │ │ ├── Test-Map.cxx │ │ │ ├── Test-Map.vcxproj │ │ │ └── Test-Map.vcxproj.filters │ ├── Matrix │ │ └── Test-Matrix │ │ │ ├── Test-Matrix.cxx │ │ │ ├── Test-Matrix.vcxproj │ │ │ └── Test-Matrix.vcxproj.filters │ ├── NamedEnum │ │ └── Test-NamedEnum │ │ │ ├── Test-NamedEnum.cxx │ │ │ ├── Test-NamedEnum.vcxproj │ │ │ └── Test-NamedEnum.vcxproj.filters │ ├── ODE │ │ └── Test-ODE │ │ │ ├── Test-ODE.cxx │ │ │ ├── Test-ODE.vcxproj │ │ │ └── Test-ODE.vcxproj.filters │ ├── OStringStream │ │ └── Test-OStringStream │ │ │ ├── Test-OStringStream.cxx │ │ │ ├── Test-OStringStream.vcxproj │ │ │ └── Test-OStringStream.vcxproj.filters │ ├── POSIX │ │ └── Test-POSIX │ │ │ ├── Test-POSIX.cxx │ │ │ ├── Test-POSIX.vcxproj │ │ │ └── Test-POSIX.vcxproj.filters │ ├── PackedList │ │ └── Test-PackedList │ │ │ ├── Test-PackedList.cxx │ │ │ ├── Test-PackedList.vcxproj │ │ │ └── Test-PackedList.vcxproj.filters │ ├── PackedList1 │ │ └── Test-PackedList1 │ │ │ ├── Test-PackedList1.cxx │ │ │ ├── Test-PackedList1.vcxproj │ │ │ └── Test-PackedList1.vcxproj.filters │ ├── PackedList2 │ │ └── Test-PackedList2 │ │ │ ├── Test-PackedList2.cxx │ │ │ ├── Test-PackedList2.vcxproj │ │ │ └── Test-PackedList2.vcxproj.filters │ ├── PackedList3 │ │ └── Test-PackedList3 │ │ │ ├── Test-PackedList3.cxx │ │ │ ├── Test-PackedList3.vcxproj │ │ │ └── Test-PackedList3.vcxproj.filters │ ├── PackedList4 │ │ └── Test-PackedList4 │ │ │ ├── Test-PackedList4.cxx │ │ │ ├── Test-PackedList4.vcxproj │ │ │ └── Test-PackedList4.vcxproj.filters │ ├── PatchEdgeFaceWave │ │ └── Test-PatchEdgeFaceWave │ │ │ ├── Test-PatchEdgeFaceWave.cxx │ │ │ ├── Test-PatchEdgeFaceWave.vcxproj │ │ │ └── Test-PatchEdgeFaceWave.vcxproj.filters │ ├── PatchTools │ │ └── Test-PatchTools │ │ │ ├── Test-PatchTools.cxx │ │ │ ├── Test-PatchTools.vcxproj │ │ │ └── Test-PatchTools.vcxproj.filters │ ├── PointEdgeWave │ │ └── Test-PointEdgeWave │ │ │ ├── Test-PointEdgeWave.cxx │ │ │ ├── Test-PointEdgeWave.vcxproj │ │ │ └── Test-PointEdgeWave.vcxproj.filters │ ├── PointField │ │ └── Test-PointField │ │ │ ├── Test-PointField.cxx │ │ │ ├── Test-PointField.vcxproj │ │ │ └── Test-PointField.vcxproj.filters │ ├── Polynomial │ │ └── Test-Polynomial │ │ │ ├── Test-Polynomial.cxx │ │ │ ├── Test-Polynomial.vcxproj │ │ │ └── Test-Polynomial.vcxproj.filters │ ├── PtrList │ │ └── Test-PtrList │ │ │ ├── Test-PtrList.cxx │ │ │ ├── Test-PtrList.vcxproj │ │ │ └── Test-PtrList.vcxproj.filters │ ├── PtrListDictionary │ │ └── Test-PtrListDictionary │ │ │ ├── Test-PtrListDictionary.cxx │ │ │ ├── Test-PtrListDictionary.vcxproj │ │ │ └── Test-PtrListDictionary.vcxproj.filters │ ├── SLList │ │ └── Test-SLList │ │ │ ├── Test-SLList.cxx │ │ │ ├── Test-SLList.vcxproj │ │ │ └── Test-SLList.vcxproj.filters │ ├── Tuple2 │ │ └── Test-Tuple2 │ │ │ ├── Test-Tuple2.cxx │ │ │ ├── Test-Tuple2.vcxproj │ │ │ └── Test-Tuple2.vcxproj.filters │ ├── UDictionary │ │ └── Test-UDictionary │ │ │ ├── Test-UDictionary.cxx │ │ │ ├── Test-UDictionary.vcxproj │ │ │ └── Test-UDictionary.vcxproj.filters │ ├── UIndirectList │ │ └── Test-UIndirectList │ │ │ ├── Test-UIndirectList.cxx │ │ │ ├── Test-UIndirectList.vcxproj │ │ │ └── Test-UIndirectList.vcxproj.filters │ ├── UniformField │ │ └── Test-UniformField │ │ │ ├── Test-UniformField.cxx │ │ │ ├── Test-UniformField.vcxproj │ │ │ └── Test-UniformField.vcxproj.filters │ ├── alloc │ │ ├── Test-new │ │ │ ├── Test-new.cxx │ │ │ ├── Test-new.vcxproj │ │ │ └── Test-new.vcxproj.filters │ │ └── Test │ │ │ ├── Test-alloc │ │ │ ├── Test-alloc.cxx │ │ │ ├── Test-alloc.vcxproj │ │ │ └── Test-alloc.vcxproj.filters │ │ │ ├── Test-malloc │ │ │ ├── Test-malloc.cxx │ │ │ ├── Test-malloc.vcxproj │ │ │ └── Test-malloc.vcxproj.filters │ │ │ ├── Test.cxx │ │ │ ├── Test.vcxproj │ │ │ └── Test.vcxproj.filters │ ├── callback │ │ └── Test-callback │ │ │ ├── Test-callback.cxx │ │ │ ├── Test-callback.vcxproj │ │ │ └── Test-callback.vcxproj.filters │ ├── codeStream │ │ └── Test-codeStream │ │ │ ├── Test-codeStream.cxx │ │ │ ├── Test-codeStream.vcxproj │ │ │ ├── Test-codeStream.vcxproj.filters │ │ │ └── codeStreamDict1 │ ├── cubicEqn │ │ └── Test-cubicEqn │ │ │ ├── Test-cubicEqn.cxx │ │ │ ├── Test-cubicEqn.vcxproj │ │ │ └── Test-cubicEqn.vcxproj.filters │ ├── cyclic │ │ └── Test-cyclic │ │ │ ├── Test-cyclic.cxx │ │ │ ├── Test-cyclic.vcxproj │ │ │ ├── Test-cyclic.vcxproj.filters │ │ │ └── createFields.lxx │ ├── decomposedBlockData │ │ └── Test-decomposedBlockData │ │ │ ├── Test-decomposedBlockData.cxx │ │ │ ├── Test-decomposedBlockData.vcxproj │ │ │ └── Test-decomposedBlockData.vcxproj.filters │ ├── delete │ │ └── Test-delete │ │ │ ├── Test-delete.cxx │ │ │ ├── Test-delete.vcxproj │ │ │ └── Test-delete.vcxproj.filters │ ├── dimensionedType │ │ └── Test-dimensionedType │ │ │ ├── Test-dimensionedType.cxx │ │ │ ├── Test-dimensionedType.vcxproj │ │ │ └── Test-dimensionedType.vcxproj.filters │ ├── dynamicIndexedOctree │ │ └── test-dynamicIndexedOctree │ │ │ ├── test-dynamicIndexedOctree.cxx │ │ │ ├── test-dynamicIndexedOctree.vcxproj │ │ │ └── test-dynamicIndexedOctree.vcxproj.filters │ ├── error │ │ └── Test-error │ │ │ ├── Test-error.cxx │ │ │ ├── Test-error.vcxproj │ │ │ └── Test-error.vcxproj.filters │ ├── extendedStencil │ │ ├── Test-extendedStencil │ │ │ ├── Test-ExtendedStencil.cxx │ │ │ ├── Test-extendedStencil.vcxproj │ │ │ └── Test-extendedStencil.vcxproj.filters │ │ └── Test-extendedStencil2 │ │ │ ├── Test-ExtendedStencil2.cxx │ │ │ ├── Test-extendedStencil2.vcxproj │ │ │ └── Test-extendedStencil2.vcxproj.filters │ ├── fieldDependency │ │ └── Test-fieldDependency │ │ │ ├── Test-fieldDependency.cxx │ │ │ ├── Test-fieldDependency.vcxproj │ │ │ └── Test-fieldDependency.vcxproj.filters │ ├── fieldMapping │ │ └── Test-fieldMapping │ │ │ ├── Test-fieldMapping.cxx │ │ │ ├── Test-fieldMapping.vcxproj │ │ │ └── Test-fieldMapping.vcxproj.filters │ ├── fileName │ │ └── Test-fileName │ │ │ ├── Test-fileName.cxx │ │ │ ├── Test-fileName.vcxproj │ │ │ └── Test-fileName.vcxproj.filters │ ├── fileNameClean │ │ └── Test-fileNameClean │ │ │ ├── Test-fileNameClean.cxx │ │ │ ├── Test-fileNameClean.vcxproj │ │ │ └── Test-fileNameClean.vcxproj.filters │ ├── findCell-octree │ │ └── Test-findCell-octree │ │ │ ├── Test-findCell-octree.cxx │ │ │ ├── Test-findCell-octree.vcxproj │ │ │ └── Test-findCell-octree.vcxproj.filters │ ├── findSphereFeatureEdges-octree │ │ └── Test-findSphereFeatureEdges-octree │ │ │ ├── Test-findSphereFeatureEdges-octree.cxx │ │ │ ├── Test-findSphereFeatureEdges-octree.vcxproj │ │ │ └── Test-findSphereFeatureEdges-octree.vcxproj.filters │ ├── findTimes │ │ └── Test-findTimes │ │ │ ├── Test-findTimes.cxx │ │ │ ├── Test-findTimes.vcxproj │ │ │ └── Test-findTimes.vcxproj.filters │ ├── foamVersion │ │ └── Test-foamVersion │ │ │ ├── Test-foamVersion.cxx │ │ │ ├── Test-foamVersion.vcxproj │ │ │ └── Test-foamVersion.vcxproj.filters │ ├── fvSolutionCombine │ │ └── Test-fvSolutionCombine │ │ │ ├── Test-fvSolutionCombine.cxx │ │ │ ├── Test-fvSolutionCombine.vcxproj │ │ │ └── Test-fvSolutionCombine.vcxproj.filters │ ├── fvc │ │ └── Test-fvc │ │ │ ├── Test-fvc.cxx │ │ │ ├── Test-fvc.vcxproj │ │ │ └── Test-fvc.vcxproj.filters │ ├── globalIndex │ │ └── Test-globalIndex │ │ │ ├── Test-globalIndex.cxx │ │ │ ├── Test-globalIndex.vcxproj │ │ │ └── Test-globalIndex.vcxproj.filters │ ├── globalMeshData │ │ └── Test-globalMeshData │ │ │ ├── Test-globalMeshData.cxx │ │ │ ├── Test-globalMeshData.vcxproj │ │ │ └── Test-globalMeshData.vcxproj.filters │ ├── graph │ │ ├── Test-graph │ │ │ ├── Test-graph.cxx │ │ │ ├── Test-graph.vcxproj │ │ │ └── Test-graph.vcxproj.filters │ │ └── graphTest2 │ │ │ ├── graphTest2.cxx │ │ │ ├── graphTest2.vcxproj │ │ │ └── graphTest2.vcxproj.filters │ ├── graphXi │ │ └── Test-graphXi │ │ │ ├── Test-graphXi.cxx │ │ │ ├── Test-graphXi.vcxproj │ │ │ ├── Test-graphXi.vcxproj.filters │ │ │ ├── r.agr │ │ │ ├── r.dat │ │ │ ├── r.gplt │ │ │ ├── r.ps │ │ │ └── r.xy │ ├── hexRef8 │ │ └── Test-hexRef8 │ │ │ ├── Test-hexRef8.cxx │ │ │ ├── Test-hexRef8.vcxproj │ │ │ └── Test-hexRef8.vcxproj.filters │ ├── io │ │ └── Test-io │ │ │ ├── Test-io.cxx │ │ │ ├── Test-io.vcxproj │ │ │ └── Test-io.vcxproj.filters │ ├── labelRanges │ │ └── Test-labelRanges │ │ │ ├── Test-labelRanges.cxx │ │ │ ├── Test-labelRanges.vcxproj │ │ │ └── Test-labelRanges.vcxproj.filters │ ├── liquid │ │ └── Test-liquid │ │ │ ├── Test-liquid.cxx │ │ │ ├── Test-liquid.vcxproj │ │ │ └── Test-liquid.vcxproj.filters │ ├── mappedPatch │ │ └── Test-mappedPatch │ │ │ ├── Test-mappedPatch.cxx │ │ │ ├── Test-mappedPatch.vcxproj │ │ │ └── Test-mappedPatch.vcxproj.filters │ ├── memInfo │ │ └── Test-memInfo │ │ │ ├── Test-memInfo.cxx │ │ │ ├── Test-memInfo.vcxproj │ │ │ └── Test-memInfo.vcxproj.filters │ ├── mesh │ │ └── Test-mesh │ │ │ ├── Test-mesh.cxx │ │ │ ├── Test-mesh.vcxproj │ │ │ └── Test-mesh.vcxproj.filters │ ├── mkdir │ │ └── Test-mkdir │ │ │ ├── Test-mkdir.cxx │ │ │ ├── Test-mkdir.vcxproj │ │ │ └── Test-mkdir.vcxproj.filters │ ├── momentOfInertia │ │ └── Test-momentOfInertia │ │ │ ├── Test-momentOfInertia.cxx │ │ │ ├── Test-momentOfInertia.vcxproj │ │ │ └── Test-momentOfInertia.vcxproj.filters │ ├── mvBak │ │ └── Test-mvBak │ │ │ ├── Test-mvBak.cxx │ │ │ ├── Test-mvBak.vcxproj │ │ │ └── Test-mvBak.vcxproj.filters │ ├── nullObject │ │ └── Test-nullObject │ │ │ ├── Test-nullObject.cxx │ │ │ ├── Test-nullObject.vcxproj │ │ │ └── Test-nullObject.vcxproj.filters │ ├── pTraits │ │ └── Test-pTraits │ │ │ ├── Test-pTraits.cxx │ │ │ ├── Test-pTraits.vcxproj │ │ │ └── Test-pTraits.vcxproj.filters │ ├── parallel-communicators │ │ └── Test-parallel-communicators │ │ │ ├── Test-parallel-communicators.cxx │ │ │ ├── Test-parallel-communicators.vcxproj │ │ │ └── Test-parallel-communicators.vcxproj.filters │ ├── parallel-nonBlocking │ │ └── Test-parallel-nonBlocking │ │ │ ├── Test-parallel-nonBlocking.cxx │ │ │ ├── Test-parallel-nonBlocking.vcxproj │ │ │ └── Test-parallel-nonBlocking.vcxproj.filters │ ├── parallel │ │ └── Test-parallel │ │ │ ├── Test-parallel.cxx │ │ │ ├── Test-parallel.vcxproj │ │ │ └── Test-parallel.vcxproj.filters │ ├── passiveParticle │ │ └── Test-passiveParticle │ │ │ ├── Test-passiveParticle.cxx │ │ │ ├── Test-passiveParticle.vcxproj │ │ │ └── Test-passiveParticle.vcxproj.filters │ ├── patchRegion │ │ └── Test-patchRegion │ │ │ ├── README │ │ │ ├── Test-patchRegion.cxx │ │ │ ├── Test-patchRegion.vcxproj │ │ │ └── Test-patchRegion.vcxproj.filters │ ├── prefixOSstream │ │ └── Test-prefixOSstream │ │ │ ├── Test-prefixOSstream.cxx │ │ │ ├── Test-prefixOSstream.vcxproj │ │ │ └── Test-prefixOSstream.vcxproj.filters │ ├── primitivePatch │ │ └── Test-primitivePatch │ │ │ ├── Test-primitivePatch.cxx │ │ │ ├── Test-primitivePatch.vcxproj │ │ │ └── Test-primitivePatch.vcxproj.filters │ ├── quaternion │ │ └── Test-quaternion │ │ │ ├── Test-quaternion.cxx │ │ │ ├── Test-quaternion.vcxproj │ │ │ └── Test-quaternion.vcxproj.filters │ ├── reconstruct │ │ └── Test-reconstruct │ │ │ ├── Test-reconstruct.cxx │ │ │ ├── Test-reconstruct.vcxproj │ │ │ └── Test-reconstruct.vcxproj.filters │ ├── regex │ │ └── Test-regex │ │ │ ├── Test-regex.cxx │ │ │ ├── Test-regex.vcxproj │ │ │ ├── Test-regex.vcxproj.filters │ │ │ └── testRegexps │ ├── rigidBodyDynamics │ │ └── Test-rigidBodyDynamics │ │ │ ├── Test-rigidBodyDynamics.cxx │ │ │ ├── Test-rigidBodyDynamics.vcxproj │ │ │ ├── Test-rigidBodyDynamics.vcxproj.filters │ │ │ ├── pendulum │ │ │ ├── pendulumAndSpring │ │ │ ├── pendulumAndSpring.gnuplot │ │ │ ├── sphericalJoint │ │ │ ├── spring │ │ │ ├── spring.gnuplot │ │ │ └── triplePendulum │ ├── router │ │ └── router │ │ │ ├── Gather.hxx │ │ │ ├── GatherBase.hxx │ │ │ ├── GatherBaseI.hxx │ │ │ ├── GatherI.hxx │ │ │ ├── Test-processorRouter.cxx │ │ │ ├── router.cxx │ │ │ ├── router.hxx │ │ │ ├── router.vcxproj │ │ │ ├── router.vcxproj.filters │ │ │ └── routerDict │ ├── sha1 │ │ └── Test-sha1 │ │ │ ├── Test-sha1.cxx │ │ │ ├── Test-sha1.vcxproj │ │ │ └── Test-sha1.vcxproj.filters │ ├── simpleMatrix │ │ └── Test-simpleMatrix │ │ │ ├── Test-simpleMatrix.cxx │ │ │ ├── Test-simpleMatrix.vcxproj │ │ │ └── Test-simpleMatrix.vcxproj.filters │ ├── sizeof │ │ └── Test-sizeof │ │ │ ├── Test-sizeof.cxx │ │ │ ├── Test-sizeof.vcxproj │ │ │ └── Test-sizeof.vcxproj.filters │ ├── slicedField │ │ └── Test-slicedField │ │ │ ├── Test-slicedField.cxx │ │ │ ├── Test-slicedField.vcxproj │ │ │ └── Test-slicedField.vcxproj.filters │ ├── sort │ │ └── Test-sort │ │ │ ├── Test-sort.vcxproj │ │ │ ├── Test-sort.vcxproj.filters │ │ │ └── Test-sortList.cxx │ ├── speed │ │ ├── scalarSpeed │ │ │ └── Test-scalarSpeed │ │ │ │ ├── Test-scalarSpeed.cxx │ │ │ │ ├── Test-scalarSpeed.vcxproj │ │ │ │ └── Test-scalarSpeed.vcxproj.filters │ │ └── vectorSpeed │ │ │ └── Test-vectorSpeed │ │ │ ├── Test-vectorSpeed.cxx │ │ │ ├── Test-vectorSpeed.vcxproj │ │ │ └── Test-vectorSpeed.vcxproj.filters │ ├── sphericalTensorField │ │ └── Test-sphericalTensorField │ │ │ ├── Test-sphericalTensorField.cxx │ │ │ ├── Test-sphericalTensorField.vcxproj │ │ │ └── Test-sphericalTensorField.vcxproj.filters │ ├── spline │ │ └── Test-spline │ │ │ ├── Test-spline.cxx │ │ │ ├── Test-spline.vcxproj │ │ │ └── Test-spline.vcxproj.filters │ ├── string │ │ └── Test-string │ │ │ ├── Test-string.cxx │ │ │ ├── Test-string.vcxproj │ │ │ └── Test-string.vcxproj.filters │ ├── stringList │ │ └── Test-stringList │ │ │ ├── Test-stringList.cxx │ │ │ ├── Test-stringList.vcxproj │ │ │ └── Test-stringList.vcxproj.filters │ ├── symmTensorField │ │ └── Test-symmTensorField │ │ │ ├── Test-symmTensorField.cxx │ │ │ ├── Test-symmTensorField.vcxproj │ │ │ └── Test-symmTensorField.vcxproj.filters │ ├── syncTools │ │ └── Test-syncTools │ │ │ ├── Test-syncTools.cxx │ │ │ ├── Test-syncTools.vcxproj │ │ │ └── Test-syncTools.vcxproj.filters │ ├── tensor │ │ └── Test-tensor │ │ │ ├── Test-tensor.cxx │ │ │ ├── Test-tensor.vcxproj │ │ │ └── Test-tensor.vcxproj.filters │ ├── tensor2D │ │ └── Test-tensor2D │ │ │ ├── Test-tensor2D.cxx │ │ │ ├── Test-tensor2D.vcxproj │ │ │ └── Test-tensor2D.vcxproj.filters │ ├── tetTetOverlap │ │ └── Test-tetTetOverlap │ │ │ ├── Test-tetTetOverlap.cxx │ │ │ ├── Test-tetTetOverlap.vcxproj │ │ │ └── Test-tetTetOverlap.vcxproj.filters │ ├── thermoMixture │ │ └── Test-thermoMixture │ │ │ ├── Test-thermoMixture.cxx │ │ │ ├── Test-thermoMixture.vcxproj │ │ │ ├── Test-thermoMixture.vcxproj.filters │ │ │ └── thermoDict │ ├── tmpField │ │ └── Test-tmpField │ │ │ ├── Test-tmpField.cxx │ │ │ ├── Test-tmpField.vcxproj │ │ │ └── Test-tmpField.vcxproj.filters │ ├── tokenize │ │ └── Test-tokenize │ │ │ ├── Test-tokenize.cxx │ │ │ ├── Test-tokenize.vcxproj │ │ │ └── Test-tokenize.vcxproj.filters │ ├── triTet │ │ └── Test-triTet │ │ │ ├── Test-triTet.cxx │ │ │ ├── Test-triTet.vcxproj │ │ │ └── Test-triTet.vcxproj.filters │ ├── vector │ │ └── Test-vector │ │ │ ├── Test-vector.cxx │ │ │ ├── Test-vector.vcxproj │ │ │ └── Test-vector.vcxproj.filters │ ├── vectorTools │ │ └── Test-vectorTools │ │ │ ├── Test-vectorTools.cxx │ │ │ ├── Test-vectorTools.vcxproj │ │ │ └── Test-vectorTools.vcxproj.filters │ ├── volField │ │ └── Test-volField │ │ │ ├── Test-volField.cxx │ │ │ ├── Test-volField.vcxproj │ │ │ └── Test-volField.vcxproj.filters │ ├── volPointInterpolation │ │ └── Test-volPointInterpolation │ │ │ ├── Test-volPointInterpolation.cxx │ │ │ ├── Test-volPointInterpolation.vcxproj │ │ │ └── Test-volPointInterpolation.vcxproj.filters │ ├── wallDist │ │ └── Test-wallDist │ │ │ ├── Test-wallDist.cxx │ │ │ ├── Test-wallDist.vcxproj │ │ │ └── Test-wallDist.vcxproj.filters │ └── wordRe │ │ └── Test-wordRe │ │ ├── Test-wordRe.cxx │ │ ├── Test-wordRe.vcxproj │ │ ├── Test-wordRe.vcxproj.filters │ │ └── testRegexps └── utilities │ ├── mesh │ ├── advanced │ │ ├── PDRMesh │ │ │ └── PDRMesh │ │ │ │ ├── PDRMesh.cxx │ │ │ │ ├── PDRMesh.vcxproj │ │ │ │ └── PDRMesh.vcxproj.filters │ │ ├── advanced.vcxproj │ │ ├── advanced.vcxproj.filters │ │ ├── autoRefineMesh │ │ │ └── autoRefineMesh │ │ │ │ ├── autoRefineMesh.cxx │ │ │ │ ├── autoRefineMesh.vcxproj │ │ │ │ └── autoRefineMesh.vcxproj.filters │ │ ├── collapseEdges │ │ │ └── collapseEdges │ │ │ │ ├── collapseEdges.cxx │ │ │ │ ├── collapseEdges.vcxproj │ │ │ │ └── collapseEdges.vcxproj.filters │ │ ├── combinePatchFaces │ │ │ └── combinePatchFaces │ │ │ │ ├── combinePatchFaces.cxx │ │ │ │ ├── combinePatchFaces.vcxproj │ │ │ │ └── combinePatchFaces.vcxproj.filters │ │ ├── modifyMesh │ │ │ └── modifyMesh │ │ │ │ ├── cellSplitter.cxx │ │ │ │ ├── cellSplitter.hxx │ │ │ │ ├── modifyMesh.cxx │ │ │ │ ├── modifyMesh.vcxproj │ │ │ │ └── modifyMesh.vcxproj.filters │ │ ├── refineHexMesh │ │ │ ├── refineHexMesh.cxx │ │ │ ├── refineHexMesh.vcxproj │ │ │ └── refineHexMesh.vcxproj.filters │ │ ├── refineWallLayer │ │ │ └── refineWallLayer │ │ │ │ ├── refineWallLayer.cxx │ │ │ │ ├── refineWallLayer.vcxproj │ │ │ │ └── refineWallLayer.vcxproj.filters │ │ ├── refinementLevel │ │ │ └── refinementLevel │ │ │ │ ├── refinementLevel.cxx │ │ │ │ ├── refinementLevel.vcxproj │ │ │ │ └── refinementLevel.vcxproj.filters │ │ ├── removeFaces │ │ │ └── removeFaces │ │ │ │ ├── removeFaces.cxx │ │ │ │ ├── removeFaces.vcxproj │ │ │ │ └── removeFaces.vcxproj.filters │ │ ├── selectCells │ │ │ └── selectCells │ │ │ │ ├── edgeStats.cxx │ │ │ │ ├── edgeStats.hxx │ │ │ │ ├── selectCells.cxx │ │ │ │ ├── selectCells.vcxproj │ │ │ │ └── selectCells.vcxproj.filters │ │ └── splitCells │ │ │ └── splitCells │ │ │ ├── splitCells.cxx │ │ │ ├── splitCells.vcxproj │ │ │ └── splitCells.vcxproj.filters │ ├── conversion │ │ ├── ansysToFoam │ │ │ ├── ansysToFoam.L │ │ │ ├── ansysToFoam.vcxproj │ │ │ └── ansysToFoam.vcxproj.filters │ │ ├── cfx4ToFoam │ │ │ └── cfx4ToFoam │ │ │ │ ├── cfx4ToFoam.cxx │ │ │ │ ├── cfx4ToFoam.vcxproj │ │ │ │ ├── cfx4ToFoam.vcxproj.filters │ │ │ │ ├── hexBlock.cxx │ │ │ │ └── hexBlock.hxx │ │ ├── datToFoam │ │ │ ├── datToFoam.cxx │ │ │ ├── datToFoam.vcxproj │ │ │ └── datToFoam.vcxproj.filters │ │ ├── fluent3DMeshToFoam │ │ │ └── fluent3DMeshToFoam │ │ │ │ ├── fluent3DMeshToFoam.L │ │ │ │ ├── fluent3DMeshToFoam.cxx │ │ │ │ ├── fluent3DMeshToFoam.vcxproj │ │ │ │ └── fluent3DMeshToFoam.vcxproj.filters │ │ ├── fluentMeshToFoam │ │ │ ├── cellShapeRecognition.hxx │ │ │ ├── create3DCellShape.cxx │ │ │ ├── extrudedQuadCellShape.cxx │ │ │ ├── extrudedTriangleCellShape.cxx │ │ │ ├── fluentMeshToFoam.L │ │ │ ├── fluentMeshToFoam.cxx │ │ │ ├── fluentMeshToFoam.vcxproj │ │ │ └── fluentMeshToFoam.vcxproj.filters │ │ ├── foamMeshToFluent │ │ │ └── foamMeshToFluent │ │ │ │ ├── fluentFvMesh.cxx │ │ │ │ ├── fluentFvMesh.hxx │ │ │ │ ├── foamMeshToFluent.cxx │ │ │ │ ├── foamMeshToFluent.vcxproj │ │ │ │ └── foamMeshToFluent.vcxproj.filters │ │ ├── foamToStarMesh │ │ │ └── foamToStarMesh │ │ │ │ ├── foamToStarMesh.cxx │ │ │ │ ├── foamToStarMesh.vcxproj │ │ │ │ ├── foamToStarMesh.vcxproj.filters │ │ │ │ └── getTimeIndex.lxx │ │ ├── foamToSurface │ │ │ ├── foamToSurface.cxx │ │ │ ├── foamToSurface.vcxproj │ │ │ ├── foamToSurface.vcxproj.filters │ │ │ └── getTimeIndex.lxx │ │ ├── gambitToFoam │ │ │ ├── gambitToFoam.L │ │ │ ├── gambitToFoam.vcxproj │ │ │ └── gambitToFoam.vcxproj.filters │ │ ├── gmshToFoam │ │ │ ├── gmshToFoam.cxx │ │ │ ├── gmshToFoam.vcxproj │ │ │ └── gmshToFoam.vcxproj.filters │ │ ├── ideasUnvToFoam │ │ │ ├── ideasUnvToFoam.cxx │ │ │ ├── ideasUnvToFoam.vcxproj │ │ │ ├── ideasUnvToFoam.vcxproj.filters │ │ │ └── unv │ │ │ │ ├── Cylinder_with_Groups.unv │ │ │ │ ├── block_with_inlet_outlet.UNV │ │ │ │ ├── face_groups_Cubit.unv │ │ │ │ ├── iniettore1.unv │ │ │ │ ├── mesh.unv │ │ │ │ ├── test.unv │ │ │ │ ├── test2.unv │ │ │ │ └── threeZonesAll.unv │ │ ├── kivaToFoam │ │ │ ├── README │ │ │ ├── checkPatch.lxx │ │ │ ├── kiva3v-valves.pdf │ │ │ ├── kivaToFoam.cxx │ │ │ ├── kivaToFoam.vcxproj │ │ │ ├── kivaToFoam.vcxproj.filters │ │ │ └── readKivaGrid.lxx │ │ ├── mshToFoam │ │ │ ├── mshToFoam.cxx │ │ │ ├── mshToFoam.vcxproj │ │ │ └── mshToFoam.vcxproj.filters │ │ ├── netgenNeutralToFoam │ │ │ ├── netgenNeutralToFoam.cxx │ │ │ ├── netgenNeutralToFoam.vcxproj │ │ │ └── netgenNeutralToFoam.vcxproj.filters │ │ ├── plot3dToFoam │ │ │ ├── hexBlock.cxx │ │ │ ├── hexBlock.hxx │ │ │ ├── plot3dToFoam.cxx │ │ │ ├── plot3dToFoam.vcxproj │ │ │ └── plot3dToFoam.vcxproj.filters │ │ ├── sammToFoam │ │ │ ├── calcPointCells.cxx │ │ │ ├── createBoundaryFaces.cxx │ │ │ ├── createPolyBoundary.cxx │ │ │ ├── createPolyCells.cxx │ │ │ ├── fillSammAddressingTable.cxx │ │ │ ├── fillSammCellShapeTable.cxx │ │ │ ├── fixCollapsedEdges.cxx │ │ │ ├── purgeCellShapes.cxx │ │ │ ├── readBoundary.cxx │ │ │ ├── readCells.cxx │ │ │ ├── readCouples.cxx │ │ │ ├── readPoints.cxx │ │ │ ├── sammMesh.cxx │ │ │ ├── sammMesh.hxx │ │ │ ├── sammToFoam.cxx │ │ │ ├── sammToFoam.vcxproj │ │ │ ├── sammToFoam.vcxproj.filters │ │ │ ├── starMesh.lxx │ │ │ └── writeMesh.cxx │ │ ├── star3ToFoam │ │ │ ├── calcPointCells.cxx │ │ │ ├── coupledFacePair.cxx │ │ │ ├── coupledFacePair.hxx │ │ │ ├── createBoundaryFaces.cxx │ │ │ ├── createCoupleMatches.cxx │ │ │ ├── createPolyBoundary.cxx │ │ │ ├── createPolyCells.cxx │ │ │ ├── fixCollapsedEdges.cxx │ │ │ ├── mergeCoupleFacePoints.cxx │ │ │ ├── purgeCellShapes.cxx │ │ │ ├── readBoundary.cxx │ │ │ ├── readCells.cxx │ │ │ ├── readCouples.cxx │ │ │ ├── readPoints.cxx │ │ │ ├── readSeparatedPoints.cxx │ │ │ ├── star3ToFoam.cxx │ │ │ ├── star3ToFoam.vcxproj │ │ │ ├── star3ToFoam.vcxproj.filters │ │ │ ├── starMesh.cxx │ │ │ ├── starMesh.hxx │ │ │ └── writeMesh.cxx │ │ ├── star4ToFoam │ │ │ ├── star4ToFoam.cxx │ │ │ ├── star4ToFoam.vcxproj │ │ │ └── star4ToFoam.vcxproj.filters │ │ ├── tetgenToFoam │ │ │ ├── beam.1.ele │ │ │ ├── beam.1.face │ │ │ ├── beam.1.node │ │ │ ├── tetgenToFoam.cxx │ │ │ ├── tetgenToFoam.vcxproj │ │ │ └── tetgenToFoam.vcxproj.filters │ │ ├── vtkUnstructuredToFoam │ │ │ ├── vtkUnstructuredToFoam.cxx │ │ │ ├── vtkUnstructuredToFoam.vcxproj │ │ │ └── vtkUnstructuredToFoam.vcxproj.filters │ │ └── writeMeshObj │ │ │ ├── writeMeshObj.cxx │ │ │ ├── writeMeshObj.vcxproj │ │ │ └── writeMeshObj.vcxproj.filters │ ├── generation │ │ ├── blockMesh │ │ │ ├── blockMesh.cxx │ │ │ ├── blockMesh.vcxproj │ │ │ ├── blockMesh.vcxproj.filters │ │ │ └── mergePatchPairs.lxx │ │ ├── extrude │ │ │ ├── extrudeMesh │ │ │ │ ├── createTimeExtruded.lxx │ │ │ │ ├── extrudeMesh.cxx │ │ │ │ ├── extrudeMesh.vcxproj │ │ │ │ └── extrudeMesh.vcxproj.filters │ │ │ └── extrudeToRegionMesh │ │ │ │ ├── extrudeToRegionMesh.cxx │ │ │ │ ├── extrudeToRegionMesh.vcxproj │ │ │ │ └── extrudeToRegionMesh.vcxproj.filters │ │ ├── extrude2DMesh │ │ │ ├── extrude2DMesh.cxx │ │ │ ├── extrude2DMesh.vcxproj │ │ │ └── extrude2DMesh.vcxproj.filters │ │ ├── foamyMesh │ │ │ ├── cellSizeAndAlignmentGrid │ │ │ │ ├── cellSizeAndAlignmentGrid.cxx │ │ │ │ ├── cellSizeAndAlignmentGrid.vcxproj │ │ │ │ └── cellSizeAndAlignmentGrid.vcxproj.filters │ │ │ ├── foamyHexMesh │ │ │ │ ├── foamyHexMesh.cxx │ │ │ │ ├── foamyHexMesh.vcxproj │ │ │ │ └── foamyHexMesh.vcxproj.filters │ │ │ ├── foamyHexMeshBackgroundMesh │ │ │ │ ├── foamyHexMeshBackgroundMesh.cxx │ │ │ │ ├── foamyHexMeshBackgroundMesh.vcxproj │ │ │ │ └── foamyHexMeshBackgroundMesh.vcxproj.filters │ │ │ ├── foamyHexMeshSurfaceSimplify │ │ │ │ ├── foamyHexMeshSurfaceSimplify.cxx │ │ │ │ ├── foamyHexMeshSurfaceSimplify.vcxproj │ │ │ │ ├── foamyHexMeshSurfaceSimplify.vcxproj.filters │ │ │ │ └── foamyHexMeshSurfaceSimplify_non_octree.cxx │ │ │ └── foamyQuadMesh │ │ │ │ ├── foamyQuadMesh.cxx │ │ │ │ ├── foamyQuadMesh.vcxproj │ │ │ │ └── foamyQuadMesh.vcxproj.filters │ │ └── snappyHexMesh │ │ │ ├── snappyHexMesh.cxx │ │ │ ├── snappyHexMesh.vcxproj │ │ │ └── snappyHexMesh.vcxproj.filters │ └── manipulation │ │ ├── New folder │ │ └── polyDualMesh │ │ │ ├── meshDualiser.cxx │ │ │ ├── meshDualiser.hxx │ │ │ ├── polyDualMesh.cxx │ │ │ ├── polyDualMesh.vcxproj │ │ │ └── polyDualMesh.vcxproj.filters │ │ ├── attachMesh │ │ └── attachMesh │ │ │ ├── attachMesh.cxx │ │ │ ├── attachMesh.vcxproj │ │ │ └── attachMesh.vcxproj.filters │ │ ├── autoPatch │ │ ├── autoPatch.cxx │ │ ├── autoPatch.vcxproj │ │ └── autoPatch.vcxproj.filters │ │ ├── checkMesh │ │ ├── checkGeometry.cxx │ │ ├── checkGeometry.hxx │ │ ├── checkMesh.cxx │ │ ├── checkMesh.vcxproj │ │ ├── checkMesh.vcxproj.filters │ │ ├── checkMeshQuality.cxx │ │ ├── checkMeshQuality.hxx │ │ ├── checkTools.cxx │ │ ├── checkTools.hxx │ │ ├── checkTopology.cxx │ │ ├── checkTopology.hxx │ │ ├── printMeshStats.cxx │ │ └── printMeshStats.hxx │ │ ├── createBaffles │ │ ├── createBaffles.cxx │ │ ├── createBaffles.vcxproj │ │ ├── createBaffles.vcxproj.filters │ │ ├── faceSelection.cxx │ │ ├── faceSelection.hxx │ │ ├── faceZoneSelection.cxx │ │ ├── faceZoneSelection.hxx │ │ ├── searchableSurfaceSelection.cxx │ │ └── searchableSurfaceSelection.hxx │ │ ├── createPatch │ │ ├── createPatch.cxx │ │ ├── createPatch.vcxproj │ │ └── createPatch.vcxproj.filters │ │ ├── deformedGeom │ │ ├── deformedGeom.cxx │ │ ├── deformedGeom.vcxproj │ │ └── deformedGeom.vcxproj.filters │ │ ├── flattenMesh │ │ ├── flattenMesh.cxx │ │ ├── flattenMesh.vcxproj │ │ └── flattenMesh.vcxproj.filters │ │ ├── insideCells │ │ ├── insideCells.cxx │ │ ├── insideCells.vcxproj │ │ └── insideCells.vcxproj.filters │ │ ├── mergeMeshes │ │ ├── createTimes.lxx │ │ ├── mergeMeshes.cxx │ │ ├── mergeMeshes.vcxproj │ │ ├── mergeMeshes.vcxproj.filters │ │ ├── mergePolyMesh.cxx │ │ └── mergePolyMesh.hxx │ │ ├── mergeOrSplitBaffles │ │ ├── mergeOrSplitBaffles.cxx │ │ ├── mergeOrSplitBaffles.vcxproj │ │ └── mergeOrSplitBaffles.vcxproj.filters │ │ ├── mirrorMesh │ │ ├── mirrorFvMesh.cxx │ │ ├── mirrorFvMesh.hxx │ │ ├── mirrorMesh.cxx │ │ ├── mirrorMesh.vcxproj │ │ ├── mirrorMesh.vcxproj.filters │ │ └── readMirrorDict.lxx │ │ ├── moveDynamicMesh │ │ ├── checkGeometry.cxx │ │ ├── checkGeometry.hxx │ │ ├── checkTools.cxx │ │ ├── checkTools.hxx │ │ ├── moveDynamicMesh.cxx │ │ ├── moveDynamicMesh.vcxproj │ │ └── moveDynamicMesh.vcxproj.filters │ │ ├── moveEngineMesh │ │ ├── moveEngineMesh.cxx │ │ ├── moveEngineMesh.vcxproj │ │ └── moveEngineMesh.vcxproj.filters │ │ ├── moveMesh │ │ ├── moveMesh.cxx │ │ ├── moveMesh.vcxproj │ │ └── moveMesh.vcxproj.filters │ │ ├── objToVTK │ │ ├── objToVTK.cxx │ │ ├── objToVTK.vcxproj │ │ └── objToVTK.vcxproj.filters │ │ ├── orientFaceZone │ │ ├── orientFaceZone.cxx │ │ ├── orientFaceZone.vcxproj │ │ └── orientFaceZone.vcxproj.filters │ │ ├── refineMesh │ │ ├── refineMesh.cxx │ │ ├── refineMesh.vcxproj │ │ └── refineMesh.vcxproj.filters │ │ ├── renumberMesh │ │ ├── renumberMesh.cxx │ │ ├── renumberMesh.vcxproj │ │ └── renumberMesh.vcxproj.filters │ │ ├── rotateMesh │ │ ├── rotateMesh.cxx │ │ ├── rotateMesh.vcxproj │ │ └── rotateMesh.vcxproj.filters │ │ ├── setSet │ │ ├── setSet.cxx │ │ ├── setSet.vcxproj │ │ ├── setSet.vcxproj.filters │ │ ├── writeFuns.cxx │ │ ├── writeFuns.hxx │ │ ├── writePatch.cxx │ │ ├── writePatch.hxx │ │ ├── writePointSet.cxx │ │ └── writePointSet.hxx │ │ ├── setsToZones │ │ ├── setsToZones.cxx │ │ ├── setsToZones.vcxproj │ │ └── setsToZones.vcxproj.filters │ │ ├── singleCellMesh │ │ ├── singleCellMesh.cxx │ │ ├── singleCellMesh.vcxproj │ │ └── singleCellMesh.vcxproj.filters │ │ ├── splitMesh │ │ ├── regionSide.cxx │ │ ├── regionSide.hxx │ │ ├── splitMesh.cxx │ │ ├── splitMesh.vcxproj │ │ └── splitMesh.vcxproj.filters │ │ ├── splitMeshRegions │ │ ├── splitMeshRegions.cxx │ │ ├── splitMeshRegions.vcxproj │ │ └── splitMeshRegions.vcxproj.filters │ │ ├── stitchMesh │ │ ├── stitchMesh.cxx │ │ ├── stitchMesh.vcxproj │ │ └── stitchMesh.vcxproj.filters │ │ ├── subsetMesh │ │ ├── subsetMesh.cxx │ │ ├── subsetMesh.vcxproj │ │ └── subsetMesh.vcxproj.filters │ │ ├── topoSet │ │ ├── topoSet.cxx │ │ ├── topoSet.vcxproj │ │ └── topoSet.vcxproj.filters │ │ ├── transformPoints │ │ ├── transformPoints.cxx │ │ ├── transformPoints.vcxproj │ │ └── transformPoints.vcxproj.filters │ │ └── zipUpMesh │ │ ├── zipUpMesh.cxx │ │ ├── zipUpMesh.vcxproj │ │ └── zipUpMesh.vcxproj.filters │ ├── miscellaneous │ ├── foamDictionary │ │ ├── foamDictionary.cxx │ │ ├── foamDictionary.vcxproj │ │ └── foamDictionary.vcxproj.filters │ ├── foamFormatConvert │ │ ├── foamFormatConvert.cxx │ │ ├── foamFormatConvert.vcxproj │ │ ├── foamFormatConvert.vcxproj.filters │ │ └── writeMeshObject.hxx │ ├── foamListTimes │ │ ├── foamListTimes.cxx │ │ ├── foamListTimes.vcxproj │ │ └── foamListTimes.vcxproj.filters │ └── patchSummary │ │ ├── patchSummary.cxx │ │ ├── patchSummary.vcxproj │ │ ├── patchSummary.vcxproj.filters │ │ ├── patchSummaryTemplates.cxx-backup │ │ ├── patchSummaryTemplates.hxx │ │ └── patchSummaryTemplatesI.hxx │ ├── parallelProcessing │ ├── decomposePar │ │ ├── decomposePar.cxx │ │ ├── decomposePar.vcxproj │ │ ├── decomposePar.vcxproj.filters │ │ ├── dimFieldDecomposer.cxx │ │ ├── dimFieldDecomposer.hxx │ │ ├── dimFieldDecomposerDecomposeFields.cxx │ │ ├── dimFieldDecomposerDecomposeFieldsI.hxx │ │ ├── domainDecomposition.cxx │ │ ├── domainDecomposition.hxx │ │ ├── domainDecompositionDistribute.cxx │ │ ├── domainDecompositionMesh.cxx │ │ ├── domainDecompositionTemplates.cxx │ │ ├── domainDecompositionTemplates.hxx │ │ ├── lagrangianFieldDecomposer.cxx │ │ ├── lagrangianFieldDecomposer.hxx │ │ ├── lagrangianFieldDecomposerDecomposeFields.cxx │ │ ├── lagrangianFieldDecomposerDecomposeFieldsI.hxx │ │ ├── pointFieldDecomposer.cxx │ │ ├── pointFieldDecomposer.hxx │ │ ├── pointFieldDecomposerDecomposeFields.cxx │ │ ├── pointFieldDecomposerDecomposeFieldsI.hxx │ │ ├── readFields.cxx │ │ ├── readFields.hxx │ │ └── readFieldsI.hxx │ ├── reconstructPar │ │ ├── checkFaceAddressingComp.lxx │ │ ├── reconstructPar.cxx │ │ ├── reconstructPar.vcxproj │ │ └── reconstructPar.vcxproj.filters │ ├── reconstructParMesh │ │ └── reconstructParMesh │ │ │ ├── reconstructParMesh.cxx │ │ │ ├── reconstructParMesh.vcxproj │ │ │ └── reconstructParMesh.vcxproj.filters │ └── redistributePar │ │ ├── loadOrCreateMesh.cxx │ │ ├── loadOrCreateMesh.hxx │ │ ├── redistributePar.cxx │ │ ├── redistributePar.vcxproj │ │ └── redistributePar.vcxproj.filters │ ├── postProcessing │ ├── dataConversion │ │ ├── foamDataToFluent │ │ │ ├── fluentUnitNumbers.txt │ │ │ ├── foamDataToFluent.cxx │ │ │ ├── foamDataToFluent.vcxproj │ │ │ ├── foamDataToFluent.vcxproj.filters │ │ │ ├── writeFluentFields.hxx │ │ │ ├── writeFluentScalarField.cxx │ │ │ └── writeFluentVectorField.cxx │ │ ├── foamToEnsight │ │ │ ├── cellSets.hxx │ │ │ ├── checkData.lxx │ │ │ ├── checkMeshMoving.lxx │ │ │ ├── ensightAsciiStream.hxx │ │ │ ├── ensightBinaryStream.hxx │ │ │ ├── ensightCaseTail.lxx │ │ │ ├── ensightCloudField.cxx-backup │ │ │ ├── ensightCloudField.hxx │ │ │ ├── ensightCloudFieldI.hxx │ │ │ ├── ensightField.cxx-backup │ │ │ ├── ensightField.hxx │ │ │ ├── ensightFieldI.hxx │ │ │ ├── ensightMesh.cxx │ │ │ ├── ensightMesh.hxx │ │ │ ├── ensightParticlePositions.cxx │ │ │ ├── ensightParticlePositions.hxx │ │ │ ├── ensightStream.hxx │ │ │ ├── faceSets.hxx │ │ │ ├── foamToEnsight.cxx │ │ │ ├── foamToEnsight.vcxproj │ │ │ ├── foamToEnsight.vcxproj.filters │ │ │ ├── itoa.cxx │ │ │ └── itoa.hxx │ │ ├── foamToEnsightParts │ │ │ ├── checkHasMovingMesh.lxx │ │ │ ├── ensightOutputCase.lxx │ │ │ ├── ensightOutputFunctions.cxx │ │ │ ├── ensightOutputFunctions.hxx │ │ │ ├── ensightOutputFunctionsI.hxx │ │ │ ├── findFields.lxx │ │ │ ├── foamToEnsightParts.cxx │ │ │ ├── foamToEnsightParts.vcxproj │ │ │ ├── foamToEnsightParts.vcxproj.filters │ │ │ ├── getTimeIndex.lxx │ │ │ └── moveMesh.lxx │ │ ├── foamToGMV │ │ │ ├── foamToGMV.cxx │ │ │ ├── foamToGMV.vcxproj │ │ │ ├── foamToGMV.vcxproj.filters │ │ │ ├── gmvOutput.lxx │ │ │ ├── gmvOutputHeader.lxx │ │ │ ├── gmvOutputLagrangian.lxx │ │ │ ├── gmvOutputSpray.lxx │ │ │ ├── gmvOutputTail.lxx │ │ │ ├── itoa.cxx │ │ │ ├── itoa.hxx │ │ │ ├── moveMesh.lxx │ │ │ └── readConversionProperties.lxx │ │ ├── foamToTecplot360 │ │ │ ├── foamToTecplot360.cxx │ │ │ ├── foamToTecplot360.vcxproj │ │ │ ├── foamToTecplot360.vcxproj.filters │ │ │ ├── readFields.cxx │ │ │ ├── readFields.hxx │ │ │ ├── readFieldsI.hxx │ │ │ ├── tecio │ │ │ │ ├── Runmake │ │ │ │ ├── examples │ │ │ │ │ ├── arrow │ │ │ │ │ │ ├── Arrow.plt │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── arrow.cpp │ │ │ │ │ │ └── arrow.vcproj │ │ │ │ │ ├── comtest │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── comtest.c │ │ │ │ │ │ ├── comtest.f │ │ │ │ │ │ ├── comtest.f90 │ │ │ │ │ │ ├── comtestc.vcproj │ │ │ │ │ │ └── comtestf.vfproj │ │ │ │ │ ├── faceneighbors │ │ │ │ │ │ ├── FaceNeighbors.plt │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── faceneighbors.cpp │ │ │ │ │ │ └── faceneighbors.vcproj │ │ │ │ │ ├── gridsolution │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── gridsolution.cpp │ │ │ │ │ │ └── gridsolution.vcproj │ │ │ │ │ ├── ij_ordered │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ij_ordered.cpp │ │ │ │ │ │ ├── ij_ordered.plt │ │ │ │ │ │ └── ij_ordered.vcproj │ │ │ │ │ ├── multiplefiles │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── file1.plt │ │ │ │ │ │ ├── file2.plt │ │ │ │ │ │ ├── multiplefiles.cpp │ │ │ │ │ │ └── multiplefiles.vcproj │ │ │ │ │ ├── multiplepolygons │ │ │ │ │ │ ├── HexagonsAndOctagon.plt │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── multiplepolygons.cpp │ │ │ │ │ │ └── multiplepolygons.vcproj │ │ │ │ │ ├── octagon │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Octagon.plt │ │ │ │ │ │ ├── octagon.cpp │ │ │ │ │ │ └── octagon.vcproj │ │ │ │ │ ├── pyramid │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── pyramid.cpp │ │ │ │ │ │ ├── pyramid.plt │ │ │ │ │ │ └── pyramid.vcproj │ │ │ │ │ ├── simtest │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── simtest.c │ │ │ │ │ │ ├── simtest.f │ │ │ │ │ │ ├── simtest.f90 │ │ │ │ │ │ ├── simtestc.vcproj │ │ │ │ │ │ └── simtestf.vfproj │ │ │ │ │ ├── squares │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── squares.cpp │ │ │ │ │ │ ├── squares.plt │ │ │ │ │ │ └── squares.vcproj │ │ │ │ │ └── text │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── text.cpp │ │ │ │ │ │ ├── text.plt │ │ │ │ │ │ └── text.vcproj │ │ │ │ ├── pltview.cpp │ │ │ │ ├── readme.txt │ │ │ │ └── tecsrc │ │ │ │ │ ├── ALLOC.h │ │ │ │ │ ├── ARRLIST.h │ │ │ │ │ ├── AUXDATA.h │ │ │ │ │ ├── DATAIO.h │ │ │ │ │ ├── DATAIO4.h │ │ │ │ │ ├── DATASET.h │ │ │ │ │ ├── DATASET0.h │ │ │ │ │ ├── DATASHR.h │ │ │ │ │ ├── DATAUTIL.h │ │ │ │ │ ├── FACE.h │ │ │ │ │ ├── FILESTREAM.h │ │ │ │ │ ├── GEOM.h │ │ │ │ │ ├── GEOM2.h │ │ │ │ │ ├── GLOBAL.h │ │ │ │ │ ├── INPUT.h │ │ │ │ │ ├── MASTER.h │ │ │ │ │ ├── Make │ │ │ │ │ ├── files │ │ │ │ │ ├── options │ │ │ │ │ └── tecioOptions │ │ │ │ │ ├── Q_MSG.h │ │ │ │ │ ├── Q_UNICODE.h │ │ │ │ │ ├── SET.h │ │ │ │ │ ├── STRLIST.h │ │ │ │ │ ├── STRUTIL.h │ │ │ │ │ ├── SYSTEM.h │ │ │ │ │ ├── TASSERT.h │ │ │ │ │ ├── TECIO.h │ │ │ │ │ ├── TECXXX.h │ │ │ │ │ ├── TEXT.h │ │ │ │ │ ├── TranslatedString.cpp │ │ │ │ │ ├── TranslatedString.h │ │ │ │ │ ├── VERSION.h │ │ │ │ │ ├── W__BASE.h │ │ │ │ │ ├── alloc.cpp │ │ │ │ │ ├── arrlist.cpp │ │ │ │ │ ├── auxdata.cpp │ │ │ │ │ ├── dataio.cpp │ │ │ │ │ ├── dataio4.cpp │ │ │ │ │ ├── dataset.cpp │ │ │ │ │ ├── dataset0.cpp │ │ │ │ │ ├── datautil.cpp │ │ │ │ │ ├── filestream.cpp │ │ │ │ │ ├── geom2.cpp │ │ │ │ │ ├── q_msg.cpp │ │ │ │ │ ├── q_unicode.cpp │ │ │ │ │ ├── set.cpp │ │ │ │ │ ├── stdafx.h │ │ │ │ │ ├── strlist.cpp │ │ │ │ │ ├── strutil.cpp │ │ │ │ │ ├── tassert.cpp │ │ │ │ │ └── tecxxx.cpp │ │ │ ├── tecplotWriter.cxx │ │ │ ├── tecplotWriter.hxx │ │ │ ├── tecplotWriterTemplates.hxx │ │ │ ├── vtkMesh.cxx │ │ │ └── vtkMesh.hxx │ │ ├── foamToTetDualMesh │ │ │ ├── foamToTetDualMesh.cxx │ │ │ ├── foamToTetDualMesh.vcxproj │ │ │ └── foamToTetDualMesh.vcxproj.filters │ │ └── smapToFoam │ │ │ ├── smapToFoam.cxx │ │ │ ├── smapToFoam.vcxproj │ │ │ └── smapToFoam.vcxproj.filters │ ├── graphics │ │ └── ensightFoamReader-files.zip │ ├── lagrangian │ │ ├── particleTracks │ │ │ ├── createFields.lxx │ │ │ ├── particleTrackProperties │ │ │ ├── particleTracks.cxx │ │ │ ├── particleTracks.vcxproj │ │ │ └── particleTracks.vcxproj.filters │ │ └── steadyParticleTracks │ │ │ ├── createFields.lxx │ │ │ ├── steadyParticleTracks.cxx │ │ │ ├── steadyParticleTracks.vcxproj │ │ │ ├── steadyParticleTracks.vcxproj.filters │ │ │ ├── steadyParticleTracksTemplates.hxx │ │ │ └── steadyParticleTracksTemplatesI.hxx │ ├── miscellaneous │ │ ├── engineCompRatio │ │ │ ├── engineCompRatio.cxx │ │ │ ├── engineCompRatio.vcxproj │ │ │ └── engineCompRatio.vcxproj.filters │ │ ├── pdfPlot │ │ │ ├── createFields.lxx │ │ │ ├── pdfPlot.cxx │ │ │ ├── pdfPlot.vcxproj │ │ │ └── pdfPlot.vcxproj.filters │ │ ├── postChannel │ │ │ ├── calculateFields.lxx │ │ │ ├── channelIndex.cxx │ │ │ ├── channelIndex.hxx │ │ │ ├── channelIndexNames.cxx │ │ │ ├── channelIndexTemplates.cxx-backup │ │ │ ├── channelIndexTemplatesI.hxx │ │ │ ├── collapse.lxx │ │ │ ├── postChannel.cxx │ │ │ ├── postChannel.vcxproj │ │ │ ├── postChannel.vcxproj.filters │ │ │ ├── readFields.lxx │ │ │ └── readTransportProperties.lxx │ │ └── temporalInterpolate │ │ │ ├── temporalInterpolate.cxx │ │ │ ├── temporalInterpolate.vcxproj │ │ │ └── temporalInterpolate.vcxproj.filters │ ├── noise │ │ ├── createFields.lxx │ │ ├── noise.cxx │ │ ├── noise.vcxproj │ │ └── noise.vcxproj.filters │ └── postProcess │ │ ├── postProcess.cxx │ │ ├── postProcess.vcxproj │ │ └── postProcess.vcxproj.filters │ ├── preProcessing │ ├── applyBoundaryLayer │ │ ├── applyBoundaryLayer.cxx │ │ ├── applyBoundaryLayer.vcxproj │ │ ├── applyBoundaryLayer.vcxproj.filters │ │ └── createFields.lxx │ ├── boxTurb │ │ ├── boxTurb.cxx │ │ ├── boxTurb.vcxproj │ │ ├── boxTurb.vcxproj.filters │ │ ├── createFields.lxx │ │ └── readBoxTurbDict.lxx │ ├── changeDictionary │ │ ├── changeDictionary.cxx │ │ ├── changeDictionary.vcxproj │ │ └── changeDictionary.vcxproj.filters │ ├── createExternalCoupledPatchGeometry │ │ ├── createExternalCoupledPatchGeometry.cxx │ │ ├── createExternalCoupledPatchGeometry.vcxproj │ │ ├── createExternalCoupledPatchGeometry.vcxproj.filters │ │ ├── createExternalCoupledPatchGeometryTemplates.hxx │ │ └── createExternalCoupledPatchGeometryTemplatesI.hxx │ ├── dsmcInitialise │ │ ├── dsmcInitialise.cxx │ │ ├── dsmcInitialise.vcxproj │ │ └── dsmcInitialise.vcxproj.filters │ ├── engineSwirl │ │ ├── createFields.lxx │ │ ├── engineSwirl.cxx │ │ ├── engineSwirl.vcxproj │ │ └── engineSwirl.vcxproj.filters │ ├── faceAgglomerate │ │ ├── faceAgglomerate.cxx │ │ ├── faceAgglomerate.vcxproj │ │ └── faceAgglomerate.vcxproj.filters │ ├── foamSetupCHT │ │ ├── foamSetupCHT.cxx │ │ ├── foamSetupCHT.vcxproj │ │ └── foamSetupCHT.vcxproj.filters │ ├── foamUpgradeCyclics │ │ ├── foamUpgradeCyclics.cxx │ │ ├── foamUpgradeCyclics.vcxproj │ │ └── foamUpgradeCyclics.vcxproj.filters │ ├── mapFields │ │ ├── MapConsistentVolFields.hxx │ │ ├── MapLagrangianFields.hxx │ │ ├── MapMeshes.hxx │ │ ├── MapVolFields.hxx │ │ ├── UnMapped.hxx │ │ ├── createTimes.lxx │ │ ├── mapFields.cxx │ │ ├── mapFields.vcxproj │ │ ├── mapFields.vcxproj.filters │ │ ├── mapLagrangian.cxx │ │ ├── mapLagrangian.hxx │ │ └── setTimeIndex.lxx │ ├── mapFieldsPar │ │ ├── MapLagrangianFields.hxx │ │ ├── MapMeshes.hxx │ │ ├── MapVolFields.hxx │ │ ├── UnMapped.hxx │ │ ├── createTimes.lxx │ │ ├── mapFieldsPar.cxx │ │ ├── mapFieldsPar.vcxproj │ │ ├── mapFieldsPar.vcxproj.filters │ │ ├── mapLagrangian.cxx │ │ ├── mapLagrangian.hxx │ │ └── setTimeIndex.lxx │ ├── mdInitialise │ │ ├── mdInitialise.cxx │ │ ├── mdInitialise.vcxproj │ │ └── mdInitialise.vcxproj.filters │ ├── setFields │ │ ├── setFields.cxx │ │ ├── setFields.vcxproj │ │ └── setFields.vcxproj.filters │ ├── setWaves │ │ ├── setWaves.cxx │ │ ├── setWaves.vcxproj │ │ └── setWaves.vcxproj.filters │ ├── viewFactorsGen │ │ ├── searchingEngine.lxx │ │ ├── shootRays.lxx │ │ ├── viewFactorsGen.cxx │ │ ├── viewFactorsGen.vcxproj │ │ └── viewFactorsGen.vcxproj.filters │ └── wallFunctionTable │ │ ├── tabulatedWallFunction │ │ ├── SpaldingsLaw │ │ │ ├── SpaldingsLaw.cxx │ │ │ └── SpaldingsLaw.hxx │ │ ├── general │ │ │ ├── general.cxx │ │ │ ├── general.hxx │ │ │ └── generalNames.cxx │ │ └── tabulatedWallFunction │ │ │ ├── tabulatedWallFunction.cxx │ │ │ ├── tabulatedWallFunction.hxx │ │ │ ├── tabulatedWallFunctionI.hxx │ │ │ └── tabulatedWallFunctionNew.cxx │ │ ├── wallFunctionTable.cxx │ │ ├── wallFunctionTable.vcxproj │ │ └── wallFunctionTable.vcxproj.filters │ ├── surface │ ├── surfaceAdd │ │ ├── surfaceAdd.cxx │ │ ├── surfaceAdd.vcxproj │ │ └── surfaceAdd.vcxproj.filters │ ├── surfaceAutoPatch │ │ ├── surfaceAutoPatch.cxx │ │ ├── surfaceAutoPatch.vcxproj │ │ └── surfaceAutoPatch.vcxproj.filters │ ├── surfaceBooleanFeatures │ │ ├── surfaceBooleanFeatures.cxx │ │ ├── surfaceBooleanFeatures.vcxproj │ │ └── surfaceBooleanFeatures.vcxproj.filters │ ├── surfaceCheck │ │ ├── surfaceCheck.cxx │ │ ├── surfaceCheck.vcxproj │ │ └── surfaceCheck.vcxproj.filters │ ├── surfaceClean │ │ ├── collapseBase.cxx │ │ ├── collapseBase.hxx │ │ ├── collapseEdge.cxx │ │ ├── collapseEdge.hxx │ │ ├── multiCollapse.stl │ │ ├── surfaceClean.cxx │ │ ├── surfaceClean.vcxproj │ │ └── surfaceClean.vcxproj.filters │ ├── surfaceCoarsen │ │ ├── README │ │ ├── bunnygut.cxx │ │ ├── bunnylod.dsp │ │ ├── bunnylod.dsw │ │ ├── font.h │ │ ├── list.h │ │ ├── progmesh.cxx │ │ ├── progmesh.hxx │ │ ├── rabdata.c │ │ ├── rabdata.h │ │ ├── surfaceCoarsen.cxx │ │ ├── surfaceCoarsen.vcxproj │ │ ├── surfaceCoarsen.vcxproj.filters │ │ ├── vector.cxx │ │ ├── vector.hxx │ │ └── winmain.cxx │ ├── surfaceConvert │ │ ├── surfaceConvert.cxx │ │ ├── surfaceConvert.vcxproj │ │ └── surfaceConvert.vcxproj.filters │ ├── surfaceFeatureConvert │ │ ├── surfaceFeatureConvert.cxx │ │ ├── surfaceFeatureConvert.vcxproj │ │ └── surfaceFeatureConvert.vcxproj.filters │ ├── surfaceFeatureExtract │ │ ├── surfaceFeatureExtract.cxx │ │ ├── surfaceFeatureExtract.vcxproj │ │ └── surfaceFeatureExtract.vcxproj.filters │ ├── surfaceFeatures │ │ ├── surfaceFeatures.cxx │ │ ├── surfaceFeatures.vcxproj │ │ └── surfaceFeatures.vcxproj.filters │ ├── surfaceFind │ │ ├── surfaceFind.cxx │ │ ├── surfaceFind.vcxproj │ │ └── surfaceFind.vcxproj.filters │ ├── surfaceHookUp │ │ ├── surfaceHookUp.cxx │ │ ├── surfaceHookUp.vcxproj │ │ └── surfaceHookUp.vcxproj.filters │ ├── surfaceInertia │ │ ├── surfaceInertia.cxx │ │ ├── surfaceInertia.vcxproj │ │ └── surfaceInertia.vcxproj.filters │ ├── surfaceLambdaMuSmooth │ │ ├── surfaceLambdaMuSmooth.cxx │ │ ├── surfaceLambdaMuSmooth.vcxproj │ │ └── surfaceLambdaMuSmooth.vcxproj.filters │ ├── surfaceMeshConvert │ │ ├── coordinateSystems │ │ ├── surfaceMeshConvert.cxx │ │ ├── surfaceMeshConvert.vcxproj │ │ └── surfaceMeshConvert.vcxproj.filters │ ├── surfaceMeshConvertTesting │ │ ├── surfaceMeshConvertTesting.cxx │ │ ├── surfaceMeshConvertTesting.vcxproj │ │ └── surfaceMeshConvertTesting.vcxproj.filters │ ├── surfaceMeshExport │ │ ├── surfaceMeshExport.cxx │ │ ├── surfaceMeshExport.vcxproj │ │ └── surfaceMeshExport.vcxproj.filters │ ├── surfaceMeshImport │ │ ├── surfaceMeshImport.cxx │ │ ├── surfaceMeshImport.vcxproj │ │ └── surfaceMeshImport.vcxproj.filters │ ├── surfaceMeshInfo │ │ ├── surfaceMeshInfo.cxx │ │ ├── surfaceMeshInfo.vcxproj │ │ └── surfaceMeshInfo.vcxproj.filters │ ├── surfaceMeshTriangulate │ │ ├── surfaceMeshTriangulate.cxx │ │ ├── surfaceMeshTriangulate.vcxproj │ │ └── surfaceMeshTriangulate.vcxproj.filters │ ├── surfaceOrient │ │ ├── surfaceOrient.cxx │ │ ├── surfaceOrient.vcxproj │ │ └── surfaceOrient.vcxproj.filters │ ├── surfacePointMerge │ │ ├── surfacePointMerge.cxx │ │ ├── surfacePointMerge.vcxproj │ │ └── surfacePointMerge.vcxproj.filters │ ├── surfaceRedistributePar │ │ ├── surfaceRedistributePar.cxx │ │ ├── surfaceRedistributePar.vcxproj │ │ └── surfaceRedistributePar.vcxproj.filters │ ├── surfaceRefineRedGreen │ │ ├── surfaceRefineRedGreen.cxx │ │ ├── surfaceRefineRedGreen.vcxproj │ │ └── surfaceRefineRedGreen.vcxproj.filters │ ├── surfaceSplitByPatch │ │ ├── surfaceSplitByPatch.cxx │ │ ├── surfaceSplitByPatch.vcxproj │ │ └── surfaceSplitByPatch.vcxproj.filters │ ├── surfaceSplitByTopology │ │ ├── surfaceSplitByTopology.cxx │ │ ├── surfaceSplitByTopology.vcxproj │ │ └── surfaceSplitByTopology.vcxproj.filters │ ├── surfaceSplitNonManifolds │ │ ├── surfaceSplitNonManifolds.cxx │ │ ├── surfaceSplitNonManifolds.vcxproj │ │ ├── surfaceSplitNonManifolds.vcxproj.filters │ │ └── test │ │ │ └── twoCubesFine.ftr │ ├── surfaceSubset │ │ ├── surfaceSubset.cxx │ │ ├── surfaceSubset.vcxproj │ │ └── surfaceSubset.vcxproj.filters │ ├── surfaceToPatch │ │ ├── surfaceToPatch.cxx │ │ ├── surfaceToPatch.vcxproj │ │ └── surfaceToPatch.vcxproj.filters │ └── surfaceTransformPoints │ │ ├── surfaceTransformPoints.cxx │ │ ├── surfaceTransformPoints.vcxproj │ │ └── surfaceTransformPoints.vcxproj.filters │ └── thermophysical │ ├── adiabaticFlameT │ ├── adiabaticFlameT.cxx │ ├── adiabaticFlameT.vcxproj │ └── adiabaticFlameT.vcxproj.filters │ ├── chemkinToFoam │ ├── chemkinToFoam.cxx │ ├── chemkinToFoam.vcxproj │ └── chemkinToFoam.vcxproj.filters │ ├── equilibriumCO │ ├── equilibriumCO.cxx │ ├── equilibriumCO.vcxproj │ └── equilibriumCO.vcxproj.filters │ ├── equilibriumFlameT │ ├── equilibriumFlameT.cxx │ ├── equilibriumFlameT.vcxproj │ └── equilibriumFlameT.vcxproj.filters │ └── mixtureAdiabaticFlameT │ ├── mixture.hxx │ ├── mixtureAdiabaticFlameT.cxx │ ├── mixtureAdiabaticFlameT.vcxproj │ ├── mixtureAdiabaticFlameT.vcxproj.filters │ └── substance.hxx ├── etc ├── README.org ├── bashrc ├── caseDicts │ ├── annotated │ │ ├── PDRMeshDict │ │ ├── adiabaticFlameTDict │ │ ├── autoRefineMeshDict │ │ ├── changeDictionaryDict │ │ ├── collapseDict │ │ ├── createBafflesDict │ │ ├── createPatchDict │ │ ├── decomposeParDict │ │ ├── equilibriumFlameTDict │ │ ├── extrude2DMeshDict │ │ ├── extrudeMeshDict │ │ ├── extrudeToRegionMeshDict │ │ ├── foamDataToFluentDict │ │ ├── foamyHexMeshDict │ │ ├── foamyQuadMeshDict │ │ ├── mapFieldsDict │ │ ├── mirrorMeshDict │ │ ├── mixtureAdiabaticFlameTDict │ │ ├── modifyMeshDict │ │ ├── particleTrackDict │ │ ├── pdfDict │ │ ├── postChannelDict │ │ ├── refineMeshDict │ │ ├── renumberMeshDict │ │ ├── selectCellsDict │ │ ├── setFieldsDict │ │ ├── setWavesDict │ │ ├── snappyHexMeshDict │ │ ├── surfaceFeatureExtractDict │ │ ├── surfaceFeaturesDict │ │ ├── surfaceHookUpDict │ │ ├── surfaceSubsetDict │ │ ├── toleranceDict │ │ ├── topoSetDict │ │ ├── viewFactorsDict │ │ └── wallFunctionDict │ ├── general │ │ ├── coordinateSystem │ │ │ ├── cartesianXY │ │ │ ├── cartesianXZ │ │ │ ├── cartesianYZ │ │ │ └── cylindrical │ │ ├── fvOptions │ │ │ └── porosity │ │ │ │ └── porousZone │ │ ├── fvSolution │ │ │ └── relaxationFactors │ │ │ │ ├── steadyState │ │ │ │ └── transient │ │ └── workflow │ │ │ ├── Allclean │ │ │ ├── Allmesh │ │ │ └── Allrun │ ├── mesh │ │ ├── generation │ │ │ ├── collapseDict │ │ │ ├── extrudeMeshDict │ │ │ ├── foamyHexMeshDict │ │ │ ├── meshQualityDict │ │ │ ├── meshQualityDict.cfg │ │ │ ├── snappyHexMeshDict │ │ │ └── snappyHexMeshDict.cfg │ │ └── manipulation │ │ │ ├── AMI │ │ │ ├── createBafflesDict │ │ │ └── createPatchDict │ │ │ ├── baffles │ │ │ └── createBafflesDict │ │ │ ├── patches │ │ │ └── createPatchDict │ │ │ └── refineRegion │ │ │ ├── refineMeshDict │ │ │ └── topoSetDict │ ├── postProcessing │ │ ├── combustion │ │ │ ├── Qdot │ │ │ └── Qdot.cfg │ │ ├── fields │ │ │ ├── CourantNo │ │ │ ├── Lambda2 │ │ │ ├── MachNo │ │ │ ├── PecletNo │ │ │ ├── Q │ │ │ ├── R │ │ │ ├── XiReactionRate │ │ │ ├── add │ │ │ ├── age │ │ │ ├── components │ │ │ ├── ddt │ │ │ ├── div │ │ │ ├── enstrophy │ │ │ ├── flowType │ │ │ ├── grad │ │ │ ├── log │ │ │ ├── mag │ │ │ ├── magSqr │ │ │ ├── randomise │ │ │ ├── randomise.cfg │ │ │ ├── scale │ │ │ ├── streamFunction │ │ │ ├── subtract │ │ │ ├── turbulenceFields │ │ │ ├── turbulenceIntensity │ │ │ ├── vorticity │ │ │ ├── wallHeatFlux │ │ │ ├── wallHeatTransferCoeff │ │ │ ├── wallShearStress │ │ │ ├── writeCellCentres │ │ │ ├── writeCellVolumes │ │ │ ├── writeObjects │ │ │ ├── writeVTK │ │ │ └── yPlus │ │ ├── flowRate │ │ │ ├── flowRateFaceZone │ │ │ ├── flowRateFaceZone.cfg │ │ │ ├── flowRatePatch │ │ │ ├── flowRatePatch.cfg │ │ │ ├── volFlowRateSurface │ │ │ └── volFlowRateSurface.cfg │ │ ├── forces │ │ │ ├── forceCoeffs.cfg │ │ │ ├── forceCoeffsCompressible │ │ │ ├── forceCoeffsIncompressible │ │ │ ├── forceCoeffsIncompressible.cfg │ │ │ ├── forces.cfg │ │ │ ├── forcesCompressible │ │ │ ├── forcesIncompressible │ │ │ └── forcesIncompressible.cfg │ │ ├── graphs │ │ │ ├── graph.cfg │ │ │ ├── sampleDict.cfg │ │ │ └── singleGraph │ │ ├── lagrangian │ │ │ └── dsmcFields │ │ ├── minMax │ │ │ ├── cellMax │ │ │ ├── cellMin │ │ │ ├── cellMin.cfg │ │ │ ├── cellMinMax.cfg │ │ │ ├── faceMax │ │ │ ├── faceMin │ │ │ ├── faceMin.cfg │ │ │ ├── faceMinMax.cfg │ │ │ ├── fieldMinMax.cfg │ │ │ ├── minMaxComponents │ │ │ ├── minMaxComponents.cfg │ │ │ └── minMaxMagnitude │ │ ├── numerical │ │ │ ├── residuals │ │ │ ├── residuals.cfg │ │ │ └── time │ │ ├── pressure │ │ │ ├── pressure.cfg │ │ │ ├── pressureDifference.cfg │ │ │ ├── pressureDifferencePatch │ │ │ ├── pressureDifferencePatch.cfg │ │ │ ├── pressureDifferenceSurface │ │ │ ├── pressureDifferenceSurface.cfg │ │ │ ├── staticPressure │ │ │ ├── staticPressure.cfg │ │ │ ├── totalPressureCompressible │ │ │ ├── totalPressureCompressible.cfg │ │ │ ├── totalPressureIncompressible │ │ │ └── totalPressureIncompressible.cfg │ │ ├── probes │ │ │ ├── boundaryProbes │ │ │ ├── boundaryProbes.cfg │ │ │ ├── interfaceHeight │ │ │ ├── interfaceHeight.cfg │ │ │ ├── internalProbes │ │ │ ├── internalProbes.cfg │ │ │ ├── probes │ │ │ └── probes.cfg │ │ ├── solvers │ │ │ ├── icoUncoupledKinematicCloud │ │ │ │ └── icoUncoupledKinematicCloud │ │ │ ├── phaseScalarTransport │ │ │ │ ├── phaseScalarTransport │ │ │ │ └── phaseScalarTransport.cfg │ │ │ └── scalarTransport │ │ │ │ ├── scalarTransport │ │ │ │ └── scalarTransport.cfg │ │ ├── surfaceFieldValue │ │ │ ├── faceZone.cfg │ │ │ ├── patch.cfg │ │ │ ├── patchAverage │ │ │ ├── patchIntegrate │ │ │ ├── surfaceRegion.cfg │ │ │ └── triSurfaceRegion.cfg │ │ └── visualization │ │ │ ├── streamlines │ │ │ ├── streamlines.cfg │ │ │ ├── surfaces │ │ │ └── surfaces.cfg │ ├── preProcessing │ │ ├── decomposeParDict │ │ ├── mapFieldsDict │ │ └── setFieldsDict │ ├── setConstraintTypes │ ├── solvers │ │ ├── chemistry │ │ │ └── TDAC │ │ │ │ ├── chemistryProperties.cfg │ │ │ │ └── chemistryPropertiesFlame.cfg │ │ ├── lagrangian │ │ │ └── kinematicCloudProperties │ │ └── scalarTransport │ │ │ ├── s │ │ │ ├── scalarTransportDict │ │ │ └── scalarTransportDict.cfg │ └── surface │ │ ├── surfaceFeatureExtractDict.cfg │ │ ├── surfaceFeaturesDict │ │ └── surfaceFeaturesDict.cfg ├── cellModels ├── codeTemplates │ ├── BC │ │ ├── BC.C │ │ ├── BC.H │ │ ├── BCs.C │ │ ├── BCs.H │ │ ├── BCsFwd.H │ │ └── Make │ │ │ ├── files │ │ │ └── options │ ├── app │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── app.C │ ├── dynamicCode │ │ ├── codeStreamTemplate.C │ │ ├── codedFvOptionTemplate.C │ │ ├── codedFvOptionTemplate.H │ │ ├── fixedValueFvPatchFieldTemplate.C │ │ ├── fixedValueFvPatchFieldTemplate.H │ │ ├── fixedValuePointPatchFieldTemplate.C │ │ ├── fixedValuePointPatchFieldTemplate.H │ │ ├── functionObjectTemplate.C │ │ ├── functionObjectTemplate.H │ │ ├── mixedFvPatchFieldTemplate.C │ │ └── mixedFvPatchFieldTemplate.H │ ├── foamCommentStyles │ ├── foamScript │ ├── functionObject │ │ ├── FUNCTIONOBJECT.C │ │ ├── FUNCTIONOBJECT.H │ │ └── Make │ │ │ ├── files │ │ │ └── options │ ├── source │ │ ├── _Template.C │ │ ├── _Template.H │ │ ├── _TemplateApp.C │ │ ├── _TemplateI.H │ │ ├── _TemplateIO.C │ │ └── foamNewSource │ └── template │ │ ├── _TemplateTemplate.C │ │ ├── _TemplateTemplate.H │ │ ├── _TemplateTemplateI.H │ │ ├── _TemplateTemplateIO.C │ │ └── foamNewTemplate ├── config.csh │ ├── aliases │ ├── ensight │ ├── example │ │ ├── compiler │ │ ├── openmpi │ │ ├── paraview │ │ └── prefs.csh │ ├── mpi │ ├── paraview │ ├── settings │ └── unset ├── config.sh │ ├── CGAL │ ├── aliases │ ├── bash_completion │ ├── compiler │ ├── ensight │ ├── example │ │ ├── compiler │ │ ├── openmpi │ │ ├── paraview │ │ └── prefs.sh │ ├── functions │ ├── gperftools │ ├── metis │ ├── mpi │ ├── paraview │ ├── scotch │ ├── settings │ └── unset ├── controlDict ├── cshrc ├── paraFoam ├── templates │ ├── axisymmetricJet │ │ ├── 0 │ │ │ ├── U │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── README │ │ ├── constant │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── extrudeMeshDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── graph │ ├── closedVolume │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── README │ │ ├── constant │ │ │ ├── g │ │ │ ├── thermophysicalProperties │ │ │ ├── triSurface │ │ │ │ └── .keep │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── snappyHexMeshDict │ │ │ └── surfaceFeaturesDict │ ├── closedVolumeRotating │ │ ├── 0 │ │ │ ├── U │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── README │ │ ├── constant │ │ │ ├── MRFProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── rotatingZoneProperties │ │ │ ├── transportProperties │ │ │ ├── triSurface │ │ │ │ └── .keep │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── blockMeshDict-box │ │ │ ├── controlDict │ │ │ ├── createBafflesDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── snappyHexMeshDict │ │ │ └── surfaceFeaturesDict │ ├── compressibleInflowOutflow │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── README │ │ ├── constant │ │ │ ├── thermophysicalProperties │ │ │ ├── triSurface │ │ │ │ └── .keep │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── snappyHexMeshDict │ │ │ └── surfaceFeaturesDict │ ├── inflowOutflow │ │ ├── 0 │ │ │ ├── U │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── README │ │ ├── constant │ │ │ ├── transportProperties │ │ │ ├── triSurface │ │ │ │ └── .keep │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── snappyHexMeshDict │ │ │ └── surfaceFeaturesDict │ ├── inflowOutflowRotating │ │ ├── 0 │ │ │ ├── U │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p │ │ ├── README │ │ ├── constant │ │ │ ├── MRFProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── rotatingZoneProperties │ │ │ ├── transportProperties │ │ │ ├── triSurface │ │ │ │ └── .keep │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── blockMeshDict-box │ │ │ ├── controlDict │ │ │ ├── createBafflesDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── snappyHexMeshDict │ │ │ └── surfaceFeaturesDict │ └── singleFluidCHT │ │ ├── Allclean │ │ ├── Allmesh │ │ ├── Allrun │ │ ├── README │ │ ├── constant │ │ ├── initialConditions │ │ ├── materialProperties │ │ └── triSurface │ │ │ └── .keep │ │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── meshQualityDict │ │ ├── snappyHexMeshDict │ │ └── surfaceFeaturesDict │ │ └── templates │ │ ├── 0 │ │ ├── fluid │ │ │ ├── G │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ └── p_rgh │ │ └── solid │ │ │ ├── T │ │ │ └── p │ │ ├── constant │ │ └── fluid │ │ │ └── g │ │ ├── materials │ │ ├── air │ │ │ ├── radiationProperties │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ ├── aluminium │ │ │ ├── radiationProperties │ │ │ └── thermophysicalProperties │ │ ├── copper │ │ │ ├── radiationProperties │ │ │ └── thermophysicalProperties │ │ └── water │ │ │ ├── radiationProperties │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ ├── fluid │ │ ├── fvSchemes │ │ └── fvSolution │ │ └── solid │ │ ├── fvOptions │ │ ├── fvSchemes │ │ └── fvSolution └── thermoData │ ├── therm.dat │ └── thermoData ├── include ├── AC3DsurfaceFormat.hxx ├── AC3DsurfaceFormatCore.hxx ├── AC3DsurfaceFormatCoreI.hxx ├── AC3DsurfaceFormatI.hxx ├── AMIInterpolation.hxx ├── AMIInterpolationI.hxx ├── AMIInterpolationTemplatesI.hxx ├── AMIMethod.hxx ├── AMIMethodI.hxx ├── APIdiffCoefFunc.hxx ├── Airy.hxx ├── Ar.hxx ├── ArI.hxx ├── ArrheniusReactionRate.hxx ├── ArrheniusReactionRateI.hxx ├── ArrheniusViscosity.hxx ├── AtomizationModel.hxx ├── AtomizationModelI.hxx ├── AtomizationModelNew_Imp.hxx ├── AverageField.hxx ├── AverageFieldI.hxx ├── AveragingMethod.hxx ├── AveragingMethodI.hxx ├── AveragingMethod_Imp.hxx ├── BSpline.hxx ├── BSplineEdge.hxx ├── Barycentric2DTemplate.hxx ├── Barycentric2DTemplateI.hxx ├── BarycentricTemplate.hxx ├── BarycentricTemplateI.hxx ├── BarycentricTensorTemplate.hxx ├── BarycentricTensorTemplateI.hxx ├── Base_Module.hxx ├── Basic.hxx ├── BasicChemistryModelTemplate.hxx ├── BasicChemistryModelTemplateI.hxx ├── BasicChemistryModelTemplate_Imp.hxx ├── BasicI.hxx ├── BiIndirectList.hxx ├── BiIndirectListI.hxx ├── BinSum.hxx ├── BinSumI.hxx ├── BinaryCollisionModel.hxx ├── BinaryCollisionModelI.hxx ├── BinaryCollisionModelNew_Imp.hxx ├── BirdCarreau.hxx ├── BlobsSheetAtomization.hxx ├── BlobsSheetAtomizationI.hxx ├── Boussinesq.hxx ├── BoussinesqI.hxx ├── BreakupModel.hxx ├── BreakupModelI.hxx ├── BreakupModelNew_Imp.hxx ├── BrownianMotionForce.hxx ├── BrownianMotionForceI.hxx ├── BrownianMotionForce_Imp.hxx ├── BrunDrippingInjection.hxx ├── C.hxx ├── C10H22.hxx ├── C10H22I.hxx ├── C12H26.hxx ├── C12H26I.hxx ├── C13H28.hxx ├── C13H28I.hxx ├── C14H30.hxx ├── C14H30I.hxx ├── C16H34.hxx ├── C16H34I.hxx ├── C2H5OH.hxx ├── C2H5OHI.hxx ├── C2H6.hxx ├── C2H6I.hxx ├── C2H6O.hxx ├── C2H6OI.hxx ├── C3H6O.hxx ├── C3H6OI.hxx ├── C3H8.hxx ├── C3H8I.hxx ├── C4H10O.hxx ├── C4H10OI.hxx ├── C6H14.hxx ├── C6H14I.hxx ├── C6H6.hxx ├── C6H6I.hxx ├── C7H16.hxx ├── C7H16I.hxx ├── C7H8.hxx ├── C7H8I.hxx ├── C8H10.hxx ├── C8H10I.hxx ├── C8H18.hxx ├── C8H18I.hxx ├── C9H20.hxx ├── C9H20I.hxx ├── CECCellToCellStencil.hxx ├── CECCellToFaceStencil.hxx ├── CFCCellToCellStencil.hxx ├── CFCCellToFaceStencil.hxx ├── CFCFaceToCellStencil.hxx ├── CGALTriangulation2DKernel.hxx ├── CGALTriangulation2Ddefs.hxx ├── CGALTriangulation3DKernel.hxx ├── CGALTriangulation3Ddefs.hxx ├── CH3OH.hxx ├── CH3OHI.hxx ├── CH4N2O.hxx ├── CH4N2OI.hxx ├── CMULES.hxx ├── CMULESI.hxx ├── COxidationDiffusionLimitedRate.hxx ├── COxidationDiffusionLimitedRateI.hxx ├── COxidationHurtMitchell.hxx ├── COxidationHurtMitchellI.hxx ├── COxidationIntrinsicRate.hxx ├── COxidationIntrinsicRateI.hxx ├── COxidationKineticDiffusionLimitedRate.hxx ├── COxidationKineticDiffusionLimitedRateI.hxx ├── COxidationMurphyShaddix.hxx ├── COxidationMurphyShaddixI.hxx ├── CPCCellToCellStencil.hxx ├── CPCCellToFaceStencil.hxx ├── CSV.hxx ├── CSVI.hxx ├── CV2D.hxx ├── CV2DI.hxx ├── CaCO3.hxx ├── CalcPatchToPatchWeights_Imp.hxx ├── Callback.hxx ├── CallbackI.hxx ├── CallbackRegistry.hxx ├── CallbackRegistryI.hxx ├── Casson.hxx ├── CatmullRomSpline.hxx ├── CellZoneInjection.hxx ├── CellZoneInjectionI.hxx ├── CentredFitData.hxx ├── CentredFitScheme.hxx ├── CentredFitSnGradData.hxx ├── CentredFitSnGradDataI.hxx ├── CentredFitSnGradScheme.hxx ├── ChemicallyActivatedReactionRate.hxx ├── ChemicallyActivatedReactionRateI.hxx ├── ChemistryCombustionTemplate.hxx ├── ChemistryCombustionTemplateI.hxx ├── Chung.hxx ├── Circulator.hxx ├── CirculatorBase.hxx ├── CirculatorI.hxx ├── CloudFunctionObject.hxx ├── CloudFunctionObjectList.hxx ├── CloudFunctionObjectListI.hxx ├── CloudFunctionObjectList_Imp.hxx ├── CloudFunctionObjectNew_Imp.hxx ├── CloudFunctionObject_Imp.hxx ├── CloudSubModelBase.hxx ├── CloudSubModelBaseI.hxx ├── CloudTemplate.hxx ├── CloudTemplateI.hxx ├── CloudTemplateIO_Imp.hxx ├── CoBlended.hxx ├── CoEulerDdtScheme.hxx ├── CoEulerDdtSchemeI.hxx ├── CodedSource.hxx ├── CodedSourceIO_Imp.hxx ├── CodedSource_Imp.hxx ├── CollidingCloud.hxx ├── CollidingCloudI.hxx ├── CollidingCloud_Imp.hxx ├── CollidingParcel.hxx ├── CollidingParcelI.hxx ├── CollisionModel.hxx ├── CollisionModelI.hxx ├── CollisionModelNew_Imp.hxx ├── CollisionRecordList.hxx ├── CollisionRecordListI.hxx ├── CombustionModelTemplate.hxx ├── CombustionModelTemplateI.hxx ├── CombustionModels_Module.hxx ├── CompactIOField.hxx ├── CompactIOFieldI.hxx ├── CompactIOList.hxx ├── CompactIOListI.hxx ├── CompactListList.hxx ├── CompactListListI.hxx ├── CompactListListIO_Imp.hxx ├── CompactListList_Imp.hxx ├── CompactSpatialTensorT.hxx ├── CompactSpatialTensorTI.hxx ├── CompactSpatialTensorTemplate.hxx ├── CompactSpatialTensorTemplateI.hxx ├── CompositionModel.hxx ├── CompositionModelI.hxx ├── CompositionModelNew_Imp.hxx ├── CompressibleTurbulenceModelTemplate.hxx ├── CompressibleTurbulenceModelTemplateI.hxx ├── ConeInjection.hxx ├── ConeInjectionI.hxx ├── ConstCirculator.hxx ├── ConstCirculatorI.hxx ├── Constant.hxx ├── ConstantI.hxx ├── ConstantRateDevolatilisation.hxx ├── ConstantRateDevolatilisationI.hxx ├── Constant_Imp.hxx ├── Conversion_Module.hxx ├── CorrectPhi.hxx ├── CorrectPhiI.hxx ├── CorrectionLimitingMethod.hxx ├── CourantNo.hxx ├── CourantNo.lxx ├── CrankNicolson.hxx ├── CrankNicolsonDdtScheme.hxx ├── CrankNicolsonDdtSchemeI.hxx ├── CrankNicolsonSixDoFSolver.hxx ├── CrossPowerLaw.hxx ├── CuthillMcKeeRenumber.hxx ├── DAC.hxx ├── DACI.hxx ├── DICGaussSeidelSmoother.hxx ├── DICPreconditioner.hxx ├── DICSmoother.hxx ├── DILUGaussSeidelSmoother.hxx ├── DILUPreconditioner.hxx ├── DILUSmoother.hxx ├── DLList.hxx ├── DLListBase.hxx ├── DLListBaseI.hxx ├── DLPtrList.hxx ├── DRG.hxx ├── DRGEP.hxx ├── DRGEPI.hxx ├── DRGI.hxx ├── DSMCBaseCloud.hxx ├── DSMCCloudTemplate.hxx ├── DSMCCloudTemplateI.hxx ├── DSMCCloudTemplate_Imp.hxx ├── DSMCParcelTemplate.hxx ├── DSMCParcelTemplateI.hxx ├── DSMCParcelTemplateIO_Imp.hxx ├── DSMCParcelTemplate_Imp.hxx ├── DampingModel.hxx ├── DampingModelI.hxx ├── DarcyForchheimer.hxx ├── DarcyForchheimerI.hxx ├── DeardorffDiffStress.hxx ├── DeardorffDiffStressI.hxx ├── DelaunayMesh.hxx ├── DelaunayMeshI.hxx ├── DelaunayMeshIO_Imp.hxx ├── DelaunayMeshTools.hxx ├── DelaunayMeshToolsI.hxx ├── DelaunayMesh_Imp.hxx ├── DenseDragForce.hxx ├── DenseDragForceI.hxx ├── DevolatilisationModel.hxx ├── DevolatilisationModelI.hxx ├── DevolatilisationModelNew_Imp.hxx ├── DiagTensorTemplate.hxx ├── DiagTensorTemplateI.hxx ├── DiagonalMatrix.hxx ├── DiagonalMatrixI.hxx ├── DiagonalPreconditionerTemplate.hxx ├── DiagonalPreconditionerTemplateI.hxx ├── DiagonalSolverTemplate.hxx ├── DiagonalSolverTemplateI.hxx ├── DictionaryBase.hxx ├── DictionaryBaseIO_Imp.hxx ├── DictionaryBase_Imp.hxx ├── DictionaryTemplate.hxx ├── DictionaryTemplateI.hxx ├── DimensionedField.hxx ├── DimensionedFieldFunctions.hxx ├── DimensionedFieldFunctionsM.hxx ├── DimensionedFieldFunctions_Imp.hxx ├── DimensionedFieldI.hxx ├── DimensionedFieldIO_Imp.hxx ├── DimensionedFieldReuseFunctions.hxx ├── DimensionedField_Imp.hxx ├── DimensionedFields.hxx ├── DimensionedScalarField.hxx ├── DimensionedScalarFieldI.hxx ├── DimensionedSphericalTensorField.hxx ├── DimensionedSphericalTensorFieldI.hxx ├── DimensionedSymmTensorField.hxx ├── DimensionedSymmTensorFieldI.hxx ├── DimensionedTensorField.hxx ├── DimensionedTensorFieldI.hxx ├── DispersionModel.hxx ├── DispersionModelI.hxx ├── DispersionModelNew_Imp.hxx ├── DispersionRASModel.hxx ├── DispersionRASModelI.hxx ├── DistortedSphereDragForce.hxx ├── DistortedSphereDragForceI.hxx ├── DistributedDelaunayMesh.hxx ├── DistributedDelaunayMeshI.hxx ├── Distribution.hxx ├── DistributionI.hxx ├── DistributionTemplate.hxx ├── DistributionTemplateI.hxx ├── DistributionTemplate_Imp.hxx ├── Dual.hxx ├── DualI.hxx ├── DynamicField.hxx ├── DynamicFieldI.hxx ├── DynamicField_Imp.hxx ├── DynamicID.hxx ├── DynamicList.hxx ├── DynamicListI.hxx ├── DynamicList_Imp.hxx ├── DynamicMesh_Module.hxx ├── EDC.hxx ├── EDCI.hxx ├── EFA.hxx ├── EFAI.hxx ├── ETAB.hxx ├── ETABI.hxx ├── EddyDiffusivity.hxx ├── EddyDiffusivityI.hxx ├── EdgeMap.hxx ├── Ek.hxx ├── Engine_Module.hxx ├── ErgunWenYuDragForce.hxx ├── ErgunWenYuDragForceI.hxx ├── EtoHthermo.hxx ├── EtoHthermo.lxx ├── Euler.hxx ├── EulerCoordinateRotation.hxx ├── EulerD2dt2Scheme.hxx ├── EulerD2dt2SchemeI.hxx ├── EulerDdtScheme.hxx ├── EulerDdtSchemeI.hxx ├── EulerImplicit.hxx ├── EulerImplicitI.hxx ├── EulerSI.hxx ├── Explicit.hxx ├── ExplicitI.hxx ├── FDICPreconditioner.hxx ├── FDICSmoother.hxx ├── FECCellToFaceStencil.hxx ├── FIFOStack.hxx ├── FSD.hxx ├── FSDI.hxx ├── FaceCellWave.hxx ├── FaceCellWaveI.hxx ├── FacePostProcessing.hxx ├── FacePostProcessingI.hxx ├── FacePostProcessing_Imp.hxx ├── FallOffReactionRate.hxx ├── FallOffReactionRateI.hxx ├── Field.hxx ├── FieldActivatedInjection.hxx ├── FieldActivatedInjectionI.hxx ├── FieldField.hxx ├── FieldFieldFunctions.hxx ├── FieldFieldFunctionsI.hxx ├── FieldFieldFunctionsM.hxx ├── FieldFieldI.hxx ├── FieldFieldReuseFunctions.hxx ├── FieldFields.hxx ├── FieldFunctions.hxx ├── FieldFunctionsI.hxx ├── FieldFunctionsM.hxx ├── FieldI.hxx ├── FieldM.hxx ├── FieldReuseFunctions.hxx ├── FiniteVolume_Module.hxx ├── FitData.hxx ├── FitDataI.hxx ├── FixedList.hxx ├── FixedListI.hxx ├── FixedListIO_Imp.hxx ├── FixedList_Imp.hxx ├── FixedValueConstraint.hxx ├── FoamyMesh_Module.hxx ├── FreeStream.hxx ├── FreeStreamI.hxx ├── Function1.hxx ├── Function1Fwd.hxx ├── Function1I.hxx ├── Function1New_Imp.hxx ├── FunctionObjects_Module.hxx ├── FvAgglomerationMethods_Module.hxx ├── FvMesh_Module.hxx ├── FvMotionSolver_Module.hxx ├── FvOptions_Module.hxx ├── GAMGAgglomeration.hxx ├── GAMGAgglomerationTemplatesI.hxx ├── GAMGInterface.hxx ├── GAMGInterfaceField.hxx ├── GAMGInterfaceTemplatesI.hxx ├── GAMGPreconditioner.hxx ├── GAMGProcAgglomeration.hxx ├── GAMGSolver.hxx ├── GTSsurfaceFormat.hxx ├── GTSsurfaceFormatI.hxx ├── Gamma.hxx ├── GaussSeidelSmoother.hxx ├── GeoMesh.hxx ├── GeometricBoundaryField_Imp.hxx ├── GeometricField.hxx ├── GeometricFieldFunctions.hxx ├── GeometricFieldFunctionsI.hxx ├── GeometricFieldFunctionsM.hxx ├── GeometricFieldI.hxx ├── GeometricFieldReuseFunctions.hxx ├── GeometricField_Imp.hxx ├── GeometricFields.hxx ├── GeometricScalarField.hxx ├── GeometricScalarFieldI.hxx ├── GeometricSphericalTensorField.hxx ├── GeometricSphericalTensorFieldI.hxx ├── GeometricSymmTensorField.hxx ├── GeometricSymmTensorFieldI.hxx ├── GeometricTensorField.hxx ├── GeometricTensorFieldI.hxx ├── Giesekus.hxx ├── GiesekusI.hxx ├── GlobalIOField.hxx ├── GlobalIOFieldI.hxx ├── GlobalIOList.hxx ├── GlobalIOListI.hxx ├── GradientDispersionRAS.hxx ├── GradientDispersionRASI.hxx ├── GravityForce.hxx ├── GravityForceI.hxx ├── GravityForce_Imp.hxx ├── Gulders.hxx ├── GuldersEGR.hxx ├── H2O.hxx ├── H2OI.hxx ├── HarrisCrighton.hxx ├── Hash.hxx ├── HashPtrTable.hxx ├── HashPtrTableIO_Imp.hxx ├── HashPtrTable_Imp.hxx ├── HashSet.hxx ├── HashSetI.hxx ├── HashTable-cxxI.hxx-backup ├── HashTable.hxx ├── HashTableI.hxx ├── HashTableIO-cxxI.hxx-backup ├── HashTableIO_Imp.hxx ├── HashTable_Imp.hxx ├── Hasher.hxx ├── HasherInt.hxx ├── HeatTransferModelTemplate.hxx ├── HeatTransferModelTemplateI.hxx ├── HeatTransferModelTemplateNew_Imp.hxx ├── HerschelBulkley.hxx ├── Histogram.hxx ├── HistogramI.hxx ├── HtoEthermo.hxx ├── HtoEthermo.lxx ├── IC8H18.hxx ├── IC8H18I.hxx ├── IDDESDelta.hxx ├── IDEA.hxx ├── IDEAI.hxx ├── IDLList.hxx ├── IFstream.hxx ├── ILList.hxx ├── ILListIO_Imp.hxx ├── ILList_Imp.hxx ├── INew.hxx ├── IOField.hxx ├── IOFieldI.hxx ├── IOList.hxx ├── IOListI.hxx ├── IOMRFZoneList.hxx ├── IOMap.hxx ├── IOMapI.hxx ├── IOOutputFilter.hxx ├── IOOutputFilterI.hxx ├── IOPosition.hxx ├── IOPositionI.hxx ├── IOPtrList.hxx ├── IOPtrListI.hxx ├── IOdictionary.hxx ├── IOmanip.hxx ├── IOmapDistribute.hxx ├── IOobject.hxx ├── IOobjectI.hxx ├── IOobjectList.hxx ├── IOobjectTemplatesI.hxx ├── IOporosityModelList.hxx ├── IOprobes.hxx ├── IOsampledSets.hxx ├── IOsampledSurfaces.hxx ├── IOstream.hxx ├── IOstreams.hxx ├── IPstream.hxx ├── ISAT.hxx ├── ISATI.hxx ├── ISLList.hxx ├── ISstream.hxx ├── ISstreamI.hxx ├── IStringStream.hxx ├── ITstream.hxx ├── Identity.hxx ├── Implicit.hxx ├── ImplicitI.hxx ├── IncompressibleTurbulenceModelTemplate.hxx ├── IncompressibleTurbulenceModelTemplateI.hxx ├── IndirectList.hxx ├── IndirectListI.hxx ├── InflationInjection.hxx ├── InflationInjectionI.hxx ├── InflowBoundaryModel.hxx ├── InflowBoundaryModelI.hxx ├── InflowBoundaryModelNew_Imp.hxx ├── InfoProxy.hxx ├── InjectionModelTemplate.hxx ├── InjectionModelTemplateI.hxx ├── InjectionModelTemplateList.hxx ├── InjectionModelTemplateListI.hxx ├── InjectionModelTemplateNew_Imp.hxx ├── InjectionModelTemplate_Imp.hxx ├── InteractionLists.hxx ├── InteractionListsI.hxx ├── InteractionLists_Imp.hxx ├── IrreversibleReaction.hxx ├── IrreversibleReactionI.hxx ├── IsotropyModel.hxx ├── IsotropyModelI.hxx ├── Istream.hxx ├── JanevReactionRate.hxx ├── JanevReactionRateI.hxx ├── Keyed.hxx ├── KeyedI.hxx ├── KinematicCloudTemplate.hxx ├── KinematicCloudTemplateI.hxx ├── KinematicCloudTemplate_Imp.hxx ├── KinematicLookupTableInjection.hxx ├── KinematicLookupTableInjectionI.hxx ├── KinematicParcel.hxx ├── KinematicParcelI.hxx ├── KinematicParcelTrackingDataI.hxx ├── Kmesh.hxx ├── KmeshI.hxx ├── LESModel.hxx ├── LESModelI.hxx ├── LESdelta.hxx ├── LESeddyViscosity.hxx ├── LESeddyViscosityI.hxx ├── LESfilter.hxx ├── LIFOStack.hxx ├── LISAAtomization.hxx ├── LISAAtomizationI.hxx ├── LISASMDCalcMethod1.lxx ├── LISASMDCalcMethod2.lxx ├── LLTMatrix.hxx ├── LLTMatrixI.hxx ├── LList.hxx ├── LListIO_Imp.hxx ├── LList_Imp.hxx ├── LPtrList.hxx ├── LPtrListIO_Imp.hxx ├── LPtrList_Imp.hxx ├── LRR.hxx ├── LRRI.hxx ├── LUST.hxx ├── LUscalarMatrix.hxx ├── LUscalarMatrixTemplatesI.hxx ├── Lagrangian_Module.hxx ├── LamBremhorstKE.hxx ├── Lambda2.hxx ├── LandauTellerReactionRate.hxx ├── LandauTellerReactionRateI.hxx ├── LangmuirHinshelwoodReactionRate.hxx ├── LangmuirHinshelwoodReactionRateI.hxx ├── LarsenBorgnakkeVariableHardSphere.hxx ├── LarsenBorgnakkeVariableHardSphereI.hxx ├── LaunderSharmaKE.hxx ├── LaunderSharmaKEI.hxx ├── LduInterfaceFieldPtrsListTemplate.hxx ├── LduInterfaceFieldTemplate.hxx ├── LduInterfaceFieldTemplateI.hxx ├── LduMatrixATmulTemplateI.hxx ├── LduMatrixOperationsTemplateI.hxx ├── LduMatrixPreconditionerTemplateI.hxx ├── LduMatrixSmootherTemplateI.hxx ├── LduMatrixSolverTemplateI.hxx ├── LduMatrixTemplate.hxx ├── LduMatrixTemplateI.hxx ├── LduMatrixTemplate_Imp.hxx ├── LduMatrixUpdateMatrixInterfacesTemplateI.hxx ├── LeastSquaresGradTemplate.hxx ├── LeastSquaresGradTemplateI.hxx ├── LeastSquaresVectorsTemplate.hxx ├── LeastSquaresVectorsTemplateI.hxx ├── LienCubicKE.hxx ├── LienLeschziner.hxx ├── LiftForce.hxx ├── LiftForceI.hxx ├── LiftForce_Imp.hxx ├── LimitFuncs.hxx ├── LimitFuncsI.hxx ├── Limited.hxx ├── Limited01.hxx ├── LimitedScheme.hxx ├── LimitedSchemeI.hxx ├── LindemannFallOffFunction.hxx ├── LindemannFallOffFunctionI.hxx ├── LiquidEvaporation.hxx ├── LiquidEvaporationBoil.hxx ├── LiquidEvaporationBoilI.hxx ├── LiquidEvaporationI.hxx ├── List.hxx ├── ListCompactIO.hxx ├── ListCompactIOI.hxx ├── ListHashTable.hxx ├── ListHashTableI.hxx ├── ListHashTableIO_Imp.hxx ├── ListHashTable_Imp.hxx ├── ListI.hxx ├── ListIO_Imp.hxx ├── ListListOps.hxx ├── ListListOpsI.hxx ├── ListLoopM.hxx ├── ListOps.hxx ├── ListOpsI.hxx ├── List_Imp.hxx ├── LocalInteraction.hxx ├── LocalInteractionI.hxx ├── Lun.hxx ├── MB.hxx ├── MBI.hxx ├── MPPICCloud.hxx ├── MPPICCloudI.hxx ├── MPPICCloud_Imp.hxx ├── MPPICParcel.hxx ├── MPPICParcelI.hxx ├── MPPICParcelTrackingDataI.hxx ├── MRFZone.hxx ├── MRFZoneI.hxx ├── MRFZoneList.hxx ├── MRFZoneListI.hxx ├── MRFZoneTemplatesI.hxx ├── MSwindows.hxx ├── MULES.hxx ├── MULESI.hxx ├── MUSCL.hxx ├── MachNo.hxx ├── ManualInjection.hxx ├── ManualInjectionI.hxx ├── Map.hxx ├── MapDimensionedFields.hxx ├── MapFvFields.hxx ├── MapFvSurfaceField.hxx ├── MapFvVolField.hxx ├── MapGeometricFields.hxx ├── MapPointField.hxx ├── MarshakRadiationFixedTemperatureFvPatchScalarField.hxx ├── MarshakRadiationFvPatchScalarField.hxx ├── Matrix.hxx ├── MatrixBlock.hxx ├── MatrixBlockI.hxx ├── MatrixBlock_Imp.hxx ├── MatrixI.hxx ├── MatrixIO_Imp.hxx ├── MatrixSpace.hxx ├── MatrixSpaceI.hxx ├── Matrix_Imp.hxx ├── Maxwell.hxx ├── MaxwellI.hxx ├── MaxwellianThermal.hxx ├── MaxwellianThermalI.hxx ├── MeshObject.hxx ├── MeshObjectTemplatesI.hxx ├── MeshWave.hxx ├── MeshWaveI.hxx ├── MeshedSurface.hxx ├── MeshedSurfaceI.hxx ├── MeshedSurfaceIOAllocator.hxx ├── MeshedSurfaceIOI.hxx ├── MeshedSurfaceNewI.hxx ├── MeshedSurfaceProxy.hxx ├── MeshedSurfaceProxyI.hxx ├── MeshedSurfaceZonesI.hxx ├── MeshedSurfaces.hxx ├── MeshedSurfacesFwd.hxx ├── MichaelisMentenReactionRate.hxx ├── MichaelisMentenReactionRateI.hxx ├── Minmod.hxx ├── MixedDiffuseSpecular.hxx ├── MixedDiffuseSpecularI.hxx ├── Moment.hxx ├── MomentI.hxx ├── N2.hxx ├── N2I.hxx ├── NASCore.hxx ├── NASedgeFormat.hxx ├── NASsurfaceFormat.hxx ├── NASsurfaceFormatI.hxx ├── NSRDSfunc0.hxx ├── NSRDSfunc1.hxx ├── NSRDSfunc14.hxx ├── NSRDSfunc2.hxx ├── NSRDSfunc3.hxx ├── NSRDSfunc4.hxx ├── NSRDSfunc5.hxx ├── NSRDSfunc6.hxx ├── NSRDSfunc7.hxx ├── NVDTVD.hxx ├── NVDVTVDV.hxx ├── NamedEnum.hxx ├── NamedEnumI.hxx ├── Newmark.hxx ├── NewmarkSixDoFSolver.hxx ├── NoAtomization.hxx ├── NoAtomizationI.hxx ├── NoBinaryCollision.hxx ├── NoBinaryCollisionI.hxx ├── NoBreakup.hxx ├── NoBreakupI.hxx ├── NoCollision.hxx ├── NoCollisionI.hxx ├── NoComposition.hxx ├── NoCompositionI.hxx ├── NoDamping.hxx ├── NoDampingI.hxx ├── NoDevolatilisation.hxx ├── NoDevolatilisationI.hxx ├── NoDispersion.hxx ├── NoDispersionI.hxx ├── NoHeatTransfer.hxx ├── NoHeatTransferI.hxx ├── NoInflow.hxx ├── NoInflowI.hxx ├── NoInjection.hxx ├── NoInjectionI.hxx ├── NoInteractionTemplate.hxx ├── NoInteractionTemplateI.hxx ├── NoIsotropy.hxx ├── NoIsotropyI.hxx ├── NoPacking.hxx ├── NoPackingI.hxx ├── NoPhaseChangeTemplate.hxx ├── NoPhaseChangeTemplateI.hxx ├── NoPreconditionerTemplate.hxx ├── NoPreconditionerTemplateI.hxx ├── NoStochasticCollision.hxx ├── NoStochasticCollisionI.hxx ├── NoSurfaceFilm.hxx ├── NoSurfaceFilmI.hxx ├── NoSurfaceReaction.hxx ├── NoSurfaceReactionI.hxx ├── NonEquilibriumReversibleReaction.hxx ├── NonEquilibriumReversibleReactionI.hxx ├── NonInertialFrameForce.hxx ├── NonInertialFrameForceI.hxx ├── NonInertialFrameForce_Imp.hxx ├── NonSphereDragForce.hxx ├── NonSphereDragForceI.hxx ├── OBJedgeFormat.hxx ├── OBJstream.hxx ├── OBJsurfaceFormat.hxx ├── OBJsurfaceFormatI.hxx ├── ODESolver.hxx ├── ODESolverI.hxx ├── ODESystem.hxx ├── ODE_Module.hxx ├── OFFsurfaceFormat.hxx ├── OFFsurfaceFormatI.hxx ├── OFSsurfaceFormat.hxx ├── OFSsurfaceFormatCore.hxx ├── OFSsurfaceFormatI.hxx ├── OFstream.hxx ├── OFstreamCollator.hxx ├── OPstream.hxx ├── ORourkeCollision.hxx ├── ORourkeCollisionI.hxx ├── OSHA1stream.hxx ├── OSPRE.hxx ├── OSspecific.hxx ├── OSstream.hxx ├── OSstreamI.hxx ├── OStringStream.hxx ├── OneConstant.hxx ├── OneConstantI.hxx ├── OneConstant_Imp.hxx ├── OppositeFaceCellWave.hxx ├── OppositeFaceCellWaveI.hxx ├── Ostream.hxx ├── P1.hxx ├── PBiCCCG.hxx ├── PBiCCCGI.hxx ├── PBiCG.hxx ├── PBiCGStab.hxx ├── PBiCICG.hxx ├── PBiCICGI.hxx ├── PCG.hxx ├── PCICG.hxx ├── PCICGI.hxx ├── PFA.hxx ├── PFAI.hxx ├── Pa.hxx ├── PaSR.hxx ├── PaSRI.hxx ├── PackedBoolList.hxx ├── PackedBoolListI.hxx ├── PackedBoolList_Imp.hxx ├── PackedList.hxx ├── PackedListI.hxx ├── PackedList_Imp.hxx ├── PackingModel.hxx ├── PackingModelI.hxx ├── Pair.hxx ├── PairCollision.hxx ├── PairCollisionI.hxx ├── PairCollisionRecord.hxx ├── PairCollisionRecordI.hxx ├── PairModel.hxx ├── PairModelI.hxx ├── PairModelNew_Imp.hxx ├── PairSpringSliderDashpot.hxx ├── PairSpringSliderDashpotI.hxx ├── ParSortableList.hxx ├── ParSortableListI.hxx ├── Parallel_Module.hxx ├── ParamagneticForce.hxx ├── ParamagneticForceI.hxx ├── ParamagneticForce_Imp.hxx ├── ParticleCollector.hxx ├── ParticleCollectorI.hxx ├── ParticleCollector_Imp.hxx ├── ParticleErosion.hxx ├── ParticleErosionI.hxx ├── ParticleForce.hxx ├── ParticleForceI.hxx ├── ParticleForceList.hxx ├── ParticleForceListI.hxx ├── ParticleForceList_Imp.hxx ├── ParticleForceNew_Imp.hxx ├── ParticleForce_Imp.hxx ├── ParticleStressModel.hxx ├── ParticleTracks.hxx ├── ParticleTracksI.hxx ├── ParticleTracks_Imp.hxx ├── ParticleTrap.hxx ├── ParticleTrapI.hxx ├── PatchCollisionDensity.hxx ├── PatchCollisionDensityI.hxx ├── PatchEdgeFaceWave.hxx ├── PatchEdgeFaceWaveI.hxx ├── PatchFlowRateInjection.hxx ├── PatchFlowRateInjectionI.hxx ├── PatchInjectionTemplate.hxx ├── PatchInjectionTemplateI.hxx ├── PatchInteractionModel.hxx ├── PatchInteractionModelI.hxx ├── PatchInteractionModelNew_Imp.hxx ├── PatchPostProcessing.hxx ├── PatchPostProcessingI.hxx ├── PatchPostProcessing_Imp.hxx ├── PatchToPatchInterpolate_Imp.hxx ├── PatchToPatchInterpolationTemplate.hxx ├── PatchToPatchInterpolationTemplateI.hxx ├── PatchTools.hxx ├── PatchToolsCheckI.hxx ├── PatchToolsEdgeOwnerI.hxx ├── PatchToolsGatherAndMergeI.hxx ├── PatchToolsMatchI.hxx ├── PatchToolsNormalsI.hxx ├── PatchToolsSearchI.hxx ├── PatchToolsSortEdgesI.hxx ├── PatchToolsSortPointsI.hxx ├── PecletNo.hxx ├── PengRobinsonGas.hxx ├── PengRobinsonGasI.hxx ├── PhaseChangeModelTemplate.hxx ├── PhaseChangeModelTemplateI.hxx ├── PhaseChangeModelTemplateNew_Imp.hxx ├── PhaseCompressibleTurbulenceModel.hxx ├── PhaseCompressibleTurbulenceModelI.hxx ├── PhaseIncompressibleTurbulenceModel.hxx ├── PhaseIncompressibleTurbulenceModelI.hxx ├── PhaseLimitStabilization.hxx ├── PhaseLimitStabilization_Imp.hxx ├── Phi.hxx ├── PhiScheme.hxx ├── PhiSchemeI.hxx ├── PilchErdman.hxx ├── PilchErdmanI.hxx ├── PlessisMasliyahDragForce.hxx ├── PlessisMasliyahDragForceI.hxx ├── PointEdgeWave.hxx ├── PointEdgeWaveI.hxx ├── PointHitTemplate.hxx ├── PointIndexHitTemplate.hxx ├── PoissonPatchDistMethod.hxx ├── Polynomial.hxx ├── PolynomialEntry.hxx ├── PolynomialEntryI.hxx ├── PolynomialIO_Imp.hxx ├── Polynomial_Imp.hxx ├── PrandtlDelta.hxx ├── PressureGradientForce.hxx ├── PressureGradientForceI.hxx ├── PressureGradientForce_Imp.hxx ├── PrghPressureFvPatchScalarField.hxx ├── PrghPressureFvPatchScalarFieldI.hxx ├── PrimitivePatchAddressingI.hxx ├── PrimitivePatchBdryPointsI.hxx ├── PrimitivePatchCheckI.hxx ├── PrimitivePatchClearI.hxx ├── PrimitivePatchEdgeLoopsI.hxx ├── PrimitivePatchInterpolationTemplate.hxx ├── PrimitivePatchInterpolationTemplateI.hxx ├── PrimitivePatchLocalPointOrderI.hxx ├── PrimitivePatchMeshDataI.hxx ├── PrimitivePatchMeshEdgesI.hxx ├── PrimitivePatchPointAddressingI.hxx ├── PrimitivePatchProjectPointsI.hxx ├── PrimitivePatchTemplate.hxx ├── PrimitivePatchTemplateI.hxx ├── PrintTable.hxx ├── PrintTableI.hxx ├── PrintTable_Imp.hxx ├── ProcessorTopologyTemplate.hxx ├── ProcessorTopologyTemplateI.hxx ├── Pstream.hxx ├── PstreamBuffers.hxx ├── PstreamCombineReduceOps.hxx ├── PstreamGlobals.hxx ├── PstreamHelper.hxx ├── PstreamHelperI.hxx ├── PstreamReduceOps.hxx ├── PtrDictionary.hxx ├── PtrDictionaryI.hxx ├── PtrList.hxx ├── PtrListDictionary.hxx ├── PtrListDictionaryI.hxx ├── PtrListI.hxx ├── PtrListIO_Imp.hxx ├── PtrList_Imp.hxx ├── PtrMap.hxx ├── PureUpwindFitScheme.hxx ├── Px.hxx ├── Pxyz.hxx ├── Py.hxx ├── Pz.hxx ├── Q.hxx ├── QRMatrix.hxx ├── QRMatrixI.hxx ├── QRMatrix_Imp.hxx ├── QUICK.hxx ├── QUICKV.hxx ├── Qdot.hxx ├── RASModel.hxx ├── RASModelI.hxx ├── RKCK45.hxx ├── RKDP45.hxx ├── RKF45.hxx ├── RNGkEpsilon.hxx ├── RNGkEpsilonI.hxx ├── Ra.hxx ├── RadiationModels_Module.hxx ├── Random.hxx ├── RandomI.hxx ├── RandomProcesses_Module.hxx ├── RanzMarshall.hxx ├── RanzMarshallI.hxx ├── RaviPetersen.hxx ├── ReactingCloudTemplate.hxx ├── ReactingCloudTemplateI.hxx ├── ReactingCloudTemplate_Imp.hxx ├── ReactingLookupTableInjection.hxx ├── ReactingLookupTableInjectionI.hxx ├── ReactingMultiphaseCloudTemplate.hxx ├── ReactingMultiphaseCloudTemplateI.hxx ├── ReactingMultiphaseCloudTemplate_Imp.hxx ├── ReactingMultiphaseLookupTableInjection.hxx ├── ReactingMultiphaseLookupTableInjectionI.hxx ├── ReactingMultiphaseParcel.hxx ├── ReactingMultiphaseParcelI.hxx ├── ReactingParcel.hxx ├── ReactingParcelI.hxx ├── ReactingParcelTrackingDataI.hxx ├── Reaction.hxx ├── ReactionI.hxx ├── ReactionList.hxx ├── ReactionListI.hxx ├── ReactionProxy.hxx ├── ReactionProxyI.hxx ├── Reaction_Imp.hxx ├── ReadFields.hxx ├── ReadFieldsI.hxx ├── ReadFieldsTemplatesI.hxx ├── ReadHex.hxx ├── ReadHexI.hxx ├── Rebound.hxx ├── ReboundI.hxx ├── RectangularMatrix.hxx ├── RectangularMatrixI.hxx ├── ReitzDiwakar.hxx ├── ReitzDiwakarI.hxx ├── ReitzKHRT.hxx ├── ReitzKHRTI.hxx ├── RelativeVelocity.hxx ├── RelativeVelocityI.hxx ├── Relaxation.hxx ├── RelaxationI.hxx ├── Renumber_Module.hxx ├── ResidualsTemplate.hxx ├── ResidualsTemplateI.hxx ├── ReversibleReaction.hxx ├── ReversibleReactionI.hxx ├── ReynoldsStress.hxx ├── ReynoldsStressI.hxx ├── RigidBodyMotion_Module.hxx ├── Roots.hxx ├── RootsI.hxx ├── Rosenbrock12.hxx ├── Rosenbrock23.hxx ├── Rosenbrock34.hxx ├── RosinRammler.hxx ├── RowVector.hxx ├── RowVectorI.hxx ├── Rs.hxx ├── Rx.hxx ├── Rxyz.hxx ├── Ry.hxx ├── Ryxz.hxx ├── Rz.hxx ├── Rzyx.hxx ├── SDA.hxx ├── SFCD.hxx ├── SHA1.hxx ├── SHA1Digest.hxx ├── SHA1I.hxx ├── SHF.hxx ├── SHFI.hxx ├── SIBS.hxx ├── SLGThermo.hxx ├── SLList.hxx ├── SLListBase.hxx ├── SLListBaseI.hxx ├── SLPtrList.hxx ├── SLTSDdtScheme.hxx ├── SLTSDdtSchemeI.hxx ├── SMESHsurfaceFormat.hxx ├── SMESHsurfaceFormatI.hxx ├── SRFForce.hxx ├── SRFForceI.hxx ├── SRFFreestreamVelocityFvPatchVectorField.hxx ├── SRFModel.hxx ├── SRFVelocityFvPatchVectorField.hxx ├── SRFWallVelocityFvPatchVectorField.hxx ├── SRIFallOffFunction.hxx ├── SRIFallOffFunctionI.hxx ├── SSG.hxx ├── SSGI.hxx ├── STARCDCoordinateRotation.hxx ├── STARCDCore.hxx ├── STARCDMeshReader.hxx ├── STARCDMeshWriter.hxx ├── STARCDedgeFormat.hxx ├── STARCDsurfaceFormat.hxx ├── STARCDsurfaceFormatCore.hxx ├── STARCDsurfaceFormatI.hxx ├── STLpoint.hxx ├── STLsurfaceFormat.hxx ├── STLsurfaceFormatCore.hxx ├── STLsurfaceFormatI.hxx ├── STLtriangle.hxx ├── STLtriangleI.hxx ├── SVD.hxx ├── SVDI.hxx ├── SaffmanMeiLiftForce.hxx ├── SaffmanMeiLiftForceI.hxx ├── Sampling_Module.hxx ├── Scale.hxx ├── ScaleI.hxx ├── Scale_Imp.hxx ├── ScaledForce.hxx ├── ScaledForceI.hxx ├── SchillerNaumannDragForce.hxx ├── SchillerNaumannDragForceI.hxx ├── SemiImplicitSource.hxx ├── SemiImplicitSourceI.hxx ├── SemiImplicitSourceIO_Imp.hxx ├── SemiImplicitSource_Imp.hxx ├── ShihQuadraticKE.hxx ├── Sine.hxx ├── SineI.hxx ├── Sine_Imp.hxx ├── SingleKineticRateDevolatilisation.hxx ├── SingleKineticRateDevolatilisationI.hxx ├── SingleMixtureFraction.hxx ├── SingleMixtureFractionI.hxx ├── SinglePhaseMixture.hxx ├── SinglePhaseMixtureI.hxx ├── SlicedGeometricField.hxx ├── SlicedGeometricFieldI.hxx ├── SloanRenumber.hxx ├── Smagorinsky.hxx ├── SmagorinskyI.hxx ├── SmoothSolverTemplate.hxx ├── SmoothSolverTemplateI.hxx ├── SnappyHexMesh_Module.hxx ├── SolidReaction.hxx ├── SolidReactionI.hxx ├── SolidReaction_Imp.hxx ├── SolverPerformanceTemplate.hxx ├── SolverPerformanceTemplateI.hxx ├── SortableList.hxx ├── SortableListDRGEP.hxx ├── SortableListDRGEPI.hxx ├── SortableListEFA.hxx ├── SortableListEFAI.hxx ├── SortableListI.hxx ├── SpalartAllmaras.hxx ├── SpalartAllmarasDDES.hxx ├── SpalartAllmarasDDESI.hxx ├── SpalartAllmarasDES.hxx ├── SpalartAllmarasDESI.hxx ├── SpalartAllmarasI.hxx ├── SpalartAllmarasIDDES.hxx ├── SpalartAllmarasIDDESI.hxx ├── SpatialTensorTemplate.hxx ├── SpatialTensorTemplateI.hxx ├── SpatialVectorTemplate.hxx ├── SpatialVectorTemplateI.hxx ├── SpecieMixture.hxx ├── SpecieMixtureI.hxx ├── SpecularReflection.hxx ├── SpecularReflectionI.hxx ├── SphereDragForce.hxx ├── SphereDragForceI.hxx ├── SphericalTensor2DTemplate.hxx ├── SphericalTensor2DTemplateI.hxx ├── SphericalTensorTemplate.hxx ├── SphericalTensorTemplateI.hxx ├── SprayCloudTemplate.hxx ├── SprayCloudTemplateI.hxx ├── SprayCloudTemplate_Imp.hxx ├── SprayParcel.hxx ├── SprayParcelI.hxx ├── SprayParcelIO_Imp.hxx ├── SprayParcel_Imp.hxx ├── Square.hxx ├── SquareI.hxx ├── SquareMatrix.hxx ├── SquareMatrixI.hxx ├── SquareMatrix_Imp.hxx ├── Square_Imp.hxx ├── StCorr.lxx ├── StandardChemistryModel.hxx ├── StandardChemistryModelI.hxx ├── StandardChemistryModel_Imp.hxx ├── StandardWallInteraction.hxx ├── StandardWallInteractionI.hxx ├── Stochastic.hxx ├── StochasticCollisionModel.hxx ├── StochasticCollisionModelI.hxx ├── StochasticCollisionModelNew_Imp.hxx ├── StochasticDispersionRAS.hxx ├── StochasticDispersionRASI.hxx ├── StochasticI.hxx ├── Stokes.hxx ├── Stokes2.hxx ├── Stokes5.hxx ├── StokesI.hxx ├── SubField.hxx ├── SubFieldI.hxx ├── SubList.hxx ├── SubListI.hxx ├── SuperBee.hxx ├── SuppressionCollision.hxx ├── SuppressionCollisionI.hxx ├── SurfaceFilmModelTemplate.hxx ├── SurfaceFilmModelTemplateI.hxx ├── SurfaceFilmModelTemplateNew_Imp.hxx ├── SurfaceFilmModelTemplate_Imp.hxx ├── SurfaceReactionModel.hxx ├── SurfaceReactionModelI.hxx ├── SurfaceReactionModelNew_Imp.hxx ├── Swap.hxx ├── Switch.hxx ├── SymmTensor2DTemplate.hxx ├── SymmTensor2DTemplateI.hxx ├── SymmTensorTemplate.hxx ├── SymmTensorTemplateI.hxx ├── SymmetricSquareMatrix.hxx ├── SymmetricSquareMatrixI.hxx ├── SymmetricSquareMatrix_Imp.hxx ├── TAB.hxx ├── TABI.hxx ├── TABSMDCalcMethod1.lxx ├── TABSMDCalcMethod2.lxx ├── TDACChemistryModel.hxx ├── TDACChemistryModelI.hxx ├── TDACChemistryModel_Imp.hxx ├── TDILUPreconditioner.hxx ├── TDILUPreconditionerI.hxx ├── TGaussSeidelSmoother.hxx ├── TGaussSeidelSmootherI.hxx ├── TRIsurfaceFormat.hxx ├── TRIsurfaceFormatCore.hxx ├── TRIsurfaceFormatI.hxx ├── Table.hxx ├── TableBase.hxx ├── TableBaseI.hxx ├── TableFile.hxx ├── TableFileI.hxx ├── TableI.hxx ├── Tensor2DTemplate.hxx ├── Tensor2DTemplateI.hxx ├── TensorTemplate.hxx ├── TensorTemplateI.hxx ├── ThermalDiffusivity.hxx ├── ThermalDiffusivityI.hxx ├── ThermoCloudTemplate.hxx ├── ThermoCloudTemplateI.hxx ├── ThermoCloudTemplate_Imp.hxx ├── ThermoCombustionTemplate.hxx ├── ThermoCombustionTemplateI.hxx ├── ThermoLookupTableInjection.hxx ├── ThermoLookupTableInjectionI.hxx ├── ThermoParcel.hxx ├── ThermoParcelI.hxx ├── ThermoParcelTrackingDataI.hxx ├── ThermoSurfaceFilm.hxx ├── ThermoSurfaceFilmI.hxx ├── ThermophysicalModels_Module.hxx ├── Time.hxx ├── TimeFunction1.hxx ├── TimeFunction1I.hxx ├── TimePaths.hxx ├── TimeScaleModel.hxx ├── TimeState.hxx ├── TimeStateI.hxx ├── TomiyamaLiftForce.hxx ├── TomiyamaLiftForceI.hxx ├── TrajectoryCollision.hxx ├── TrajectoryCollisionI.hxx ├── TransportModels_Module.hxx ├── Trapezoid.hxx ├── TroeFallOffFunction.hxx ├── TroeFallOffFunctionI.hxx ├── Tuple2.hxx ├── TurbulenceModelTemplate.hxx ├── TurbulenceModelTemplateI.hxx ├── Turbulence_Module.hxx ├── UDictionary.hxx ├── UDictionaryI.hxx ├── UIDLList.hxx ├── UILList.hxx ├── UILListIO_Imp.hxx ├── UILList_Imp.hxx ├── UIPstream.hxx ├── UIndirectList.hxx ├── UIndirectListI.hxx ├── UIndirectListIO_Imp.hxx ├── UList.hxx ├── UListI.hxx ├── UListIO_Imp.hxx ├── UList_Imp.hxx ├── UMIST.hxx ├── UOPstream.hxx ├── UOprocess.hxx ├── UPstream.hxx ├── UPtrDictionary.hxx ├── UPtrDictionaryI.hxx ├── UPtrList.hxx ├── UPtrListI.hxx ├── UPtrListIO_Imp.hxx ├── UPtrList_Imp.hxx ├── UautoPtr.hxx ├── UautoPtrI.hxx ├── UniformDimensionedField.hxx ├── UniformDimensionedFieldI.hxx ├── UniformField.hxx ├── UniformFieldI.hxx ├── UniformTemplate.hxx ├── UniformTemplateI.hxx ├── UnsortedMeshedSurface.hxx ├── UnsortedMeshedSurfaceI.hxx ├── UnsortedMeshedSurfaceNewI.hxx ├── UnsortedMeshedSurfaces.hxx ├── UnsortedMeshedSurfacesFwd.hxx ├── UpwindFitData.hxx ├── UpwindFitDataI.hxx ├── UpwindFitScheme.hxx ├── VTKedgeFormat.hxx ├── VTKsurfaceFormat.hxx ├── VTKsurfaceFormatCore.hxx ├── VTKsurfaceFormatI.hxx ├── VariableHardSphere.hxx ├── VariableHardSphereI.hxx ├── Vector2DTemplate.hxx ├── Vector2DTemplateI.hxx ├── VectorSpace.hxx ├── VectorSpaceI.hxx ├── VectorSpaceOps.hxx ├── VectorSpace_Imp.hxx ├── VectorTemplate.hxx ├── VectorTemplateI.hxx ├── VenkatakrishnanGradientLimiter.hxx ├── VirtualMassForce.hxx ├── VirtualMassForceI.hxx ├── VoFphaseCompressibleTurbulenceModel.hxx ├── VoFphaseCompressibleTurbulenceModelFwd.hxx ├── VoidFraction.hxx ├── VoidFractionI.hxx ├── WALE.hxx ├── WALEI.hxx ├── WLFTransport.hxx ├── WLFTransportI.hxx ├── WLFTransport_Imp.hxx ├── WRLsurfaceFormat.hxx ├── WRLsurfaceFormatCore.hxx ├── WRLsurfaceFormatI.hxx ├── WallCollisionRecord.hxx ├── WallCollisionRecordI.hxx ├── WallInteractionModel.hxx ├── WallInteractionModelI.hxx ├── WallInteractionModelNew_Imp.hxx ├── WallLocalSpringSliderDashpot.hxx ├── WallLocalSpringSliderDashpotI.hxx ├── WallModel.hxx ├── WallModelI.hxx ├── WallModelNew_Imp.hxx ├── WallSiteData.hxx ├── WallSiteDataI.hxx ├── WallSiteData_Imp.hxx ├── WallSpringSliderDashpot.hxx ├── WallSpringSliderDashpotI.hxx ├── Wallis.hxx ├── Wave_Module.hxx ├── WenYuDragForce.hxx ├── WenYuDragForceI.hxx ├── X3DsurfaceFormat.hxx ├── X3DsurfaceFormatCore.hxx ├── X3DsurfaceFormatI.hxx ├── XiReactionRate.hxx ├── ZeroConstant.hxx ├── ZeroConstantI.hxx ├── ZeroConstant_Imp.hxx ├── ZoneIDs.hxx ├── ZoneMesh.hxx ├── ZoneMeshI.hxx ├── aC10H7CH3.hxx ├── aC10H7CH3I.hxx ├── abort.hxx ├── absolute.hxx ├── absoluteEnthalpy.hxx ├── absoluteInternalEnergy.hxx ├── absorptionCoeffs.hxx ├── absorptionCoeffsI.hxx ├── absorptionEmissionModel.hxx ├── accelerationSource.hxx ├── accelerationSourceTemplatesI.hxx ├── activeBaffleVelocityFvPatchVectorField.hxx ├── activePressureForceBaffleVelocityFvPatchVectorField.hxx ├── actuationDiskSource.hxx ├── actuationDiskSourceTemplatesI.hxx ├── adaptiveLinear.hxx ├── adaptiveSolver.hxx ├── add.hxx ├── addAllRegionsOption.lxx ├── addDictOption.lxx ├── addFunctionObjectOptions.lxx ├── addOverwriteOption.lxx ├── addPatchCellLayer.hxx ├── addRegionOption.lxx ├── addTemplates.hxx ├── addTimeOptions.lxx ├── addToMemberFunctionSelectionTable.hxx ├── addToRunTimeSelectionTable.hxx ├── adiabaticPerfectFluid.hxx ├── adiabaticPerfectFluidI.hxx ├── adjustPhi.hxx ├── advectionDiffusionPatchDistMethod.hxx ├── advectiveFvPatchField.hxx ├── advectiveFvPatchFieldI.hxx ├── advectiveFvPatchFields.hxx ├── advectiveFvPatchFieldsFwd.hxx ├── age.hxx ├── algebraicPairGAMGAgglomeration.hxx ├── allReduce.hxx ├── allReduceI.hxx ├── alphaContactAngleFvPatchScalarField.hxx ├── alphaControls.lxx ├── alphaFixedPressureFvPatchScalarField.hxx ├── alphatFilmWallFunctionFvPatchScalarField.hxx ├── alphatJayatillekeWallFunctionFvPatchScalarField.hxx ├── alphatWallFunctionFvPatchScalarField.hxx ├── analytical.hxx ├── angularOscillatingDisplacementPointPatchVectorField.hxx ├── angularOscillatingVelocityPointPatchVectorField.hxx ├── anisotropicFilter.hxx ├── arcEdge.hxx ├── arcUniform.hxx ├── argList.hxx ├── argListI.hxx ├── ash.hxx ├── atomicConstants.hxx ├── atomicWeights.hxx ├── attachDetach.hxx ├── attachPolyTopoChanger.hxx ├── autoDensity.hxx ├── autoPtr.hxx ├── autoPtrI.hxx ├── automatic.hxx ├── averageMDFields.lxx ├── axesRotation.hxx ├── axisRotationMotion.hxx ├── azizChen.hxx ├── bC10H7CH3.hxx ├── bC10H7CH3I.hxx ├── bMesh.hxx ├── backgroundMeshDecomposition.hxx ├── backgroundMeshDecompositionI.hxx ├── backgroundMeshDecompositionTemplates.hxx ├── backwardDdtScheme.hxx ├── backwardDdtSchemeI.hxx ├── badQualityToCell.hxx ├── badQualityToFace.hxx ├── bandCompression.hxx ├── barotropicCompressibilityModel.hxx ├── barycentric.hxx ├── barycentric2D.hxx ├── barycentricTensor.hxx ├── baseIOdictionary.hxx ├── basicChemistryModel.hxx ├── basicChemistryModelI.hxx ├── basicChemistryModelTemplates_Imp.hxx ├── basicCombustionMixture.hxx ├── basicCombustionMixtureI.hxx ├── basicKinematicCloud.hxx ├── basicKinematicCollidingCloud.hxx ├── basicKinematicCollidingParcel.hxx ├── basicKinematicMPPICCloud.hxx ├── basicKinematicMPPICParcel.hxx ├── basicKinematicParcel.hxx ├── basicMixture.hxx ├── basicMultiComponentMixture.hxx ├── basicMultiComponentMixtureI.hxx ├── basicReactingCloud.hxx ├── basicReactingMultiphaseCloud.hxx ├── basicReactingMultiphaseParcel.hxx ├── basicReactingParcel.hxx ├── basicSolidChemistryModel.hxx ├── basicSolidChemistryModelI.hxx ├── basicSpecieMixture.hxx ├── basicSprayCloud.hxx ├── basicSprayParcel.hxx ├── basicSymmetryFvPatchField.hxx ├── basicSymmetryFvPatchFieldI.hxx ├── basicSymmetryFvPatchFields.hxx ├── basicSymmetryPointPatchField.hxx ├── basicSymmetryPointPatchFieldI.hxx ├── basicThermo.hxx ├── basicThermoCloud.hxx ├── basicThermoI.hxx ├── basicThermoParcel.hxx ├── biLinearFitPolynomial.hxx ├── binary.hxx ├── binaryNode.hxx ├── binaryNodeI.hxx ├── binaryTree.hxx ├── binaryTreeI.hxx ├── blackBodyEmission.hxx ├── bladeModel.hxx ├── blended.hxx ├── blendedSchemeBase.hxx ├── blendingFactor.hxx ├── blendingFactorTemplates.hxx ├── block.hxx ├── blockDescriptor.hxx ├── blockDescriptorI.hxx ├── blockEdge.hxx ├── blockEdgeI.hxx ├── blockEdgeList.hxx ├── blockFace.hxx ├── blockFaceI.hxx ├── blockFaceList.hxx ├── blockI.hxx ├── blockList.hxx ├── blockMesh.hxx ├── blockMeshTools.hxx ├── blockMeshToolsI.hxx ├── blockVertex.hxx ├── blockVertexList.hxx ├── bodyCentredCubic.hxx ├── bool.hxx ├── boolList.hxx ├── booleanSurface.hxx ├── bound.hxx ├── boundBox.hxx ├── boundBoxI.hxx ├── boundBoxTemplatesI.hxx ├── boundaryCutter.hxx ├── boundaryMesh.hxx ├── boundaryPatch.hxx ├── boundaryPoints.hxx ├── boundaryRandom.hxx ├── boundaryRegion.hxx ├── boundaryToFace.hxx ├── boundedConvectionScheme.hxx ├── boundedConvectionSchemeI.hxx ├── boundedDdtScheme.hxx ├── boundedDdtSchemeI.hxx ├── boxToCell.hxx ├── boxToFace.hxx ├── boxToPoint.hxx ├── boxUniform.hxx ├── bufferedAccumulator.hxx ├── bufferedAccumulatorI.hxx ├── bufferedAccumulatorIO_Imp.hxx ├── bufferedAccumulator_Imp.hxx ├── buoyancyEnergy.hxx ├── buoyancyForce.hxx ├── buoyantKEpsilon.hxx ├── buoyantKEpsilonI.hxx ├── calcEk.hxx ├── calcEntry.hxx ├── calculateAutoCorrelationFunctions.lxx ├── calculateMDFields.lxx ├── calculateTransportProperties.lxx ├── calculatedFvPatchField.hxx ├── calculatedFvPatchFieldI.hxx ├── calculatedFvPatchFields.hxx ├── calculatedFvPatchFieldsFwd.hxx ├── calculatedFvsPatchField.hxx ├── calculatedFvsPatchFieldI.hxx ├── calculatedFvsPatchFields.hxx ├── calculatedFvsPatchFieldsFwd.hxx ├── calculatedPointPatchField.hxx ├── calculatedPointPatchFieldI.hxx ├── calculatedPointPatchFields.hxx ├── cartesianCS.hxx ├── cell.hxx ├── cellAspectRatioControl.hxx ├── cellClassification.hxx ├── cellCoBlended.hxx ├── cellCuts.hxx ├── cellDistFuncs.hxx ├── cellDistFuncsTemplatesI.hxx ├── cellFeatures.hxx ├── cellI.hxx ├── cellIOList.hxx ├── cellInfo.hxx ├── cellInfoI.hxx ├── cellLimitedGrad.hxx ├── cellLimitedGradI.hxx ├── cellList.hxx ├── cellLooper.hxx ├── cellMDLimitedGrad.hxx ├── cellMapper.hxx ├── cellMatcher.hxx ├── cellMatcherI.hxx ├── cellModel.hxx ├── cellModelI.hxx ├── cellModeller.hxx ├── cellMotionFvPatchField.hxx ├── cellMotionFvPatchFieldI.hxx ├── cellMotionFvPatchFields.hxx ├── cellMotionFvPatchFieldsFwd.hxx ├── cellPointWeight.hxx ├── cellQuality.hxx ├── cellSet.hxx ├── cellSetOption.hxx ├── cellSetOptionI.hxx ├── cellShape.hxx ├── cellShapeControl.hxx ├── cellShapeControlI.hxx ├── cellShapeControlMesh.hxx ├── cellShapeControlMeshI.hxx ├── cellShapeI.hxx ├── cellShapeIOList.hxx ├── cellShapeList.hxx ├── cellSizeAndAlignmentControl.hxx ├── cellSizeAndAlignmentControls.hxx ├── cellSizeCalculationType.hxx ├── cellSizeFunction.hxx ├── cellTable.hxx ├── cellToCell.hxx ├── cellToCellStencil.hxx ├── cellToFace.hxx ├── cellToFaceStencil.hxx ├── cellToPoint.hxx ├── cellVolumeWeightMethod.hxx ├── cellZone.hxx ├── cellZoneMesh.hxx ├── cellZoneMeshFwd.hxx ├── cellZoneSet.hxx ├── centredCECCellToCellStencilObject.hxx ├── centredCECCellToFaceStencilObject.hxx ├── centredCFCCellToCellStencilObject.hxx ├── centredCFCCellToFaceStencilObject.hxx ├── centredCFCFaceToCellStencilObject.hxx ├── centredCPCCellToCellStencilObject.hxx ├── centredCPCCellToFaceStencilObject.hxx ├── centredFECCellToFaceStencilObject.hxx ├── char.hxx ├── checkConstantOption.lxx ├── checkPatchFieldTypes.lxx ├── checkTimeOption.lxx ├── checkTimeOptions.lxx ├── checkTimeOptionsNoConstant.lxx ├── chemPointISAT.hxx ├── chemPointISATI.hxx ├── chemistryReader.hxx ├── chemistryReaderI.hxx ├── chemistryReductionMethod.hxx ├── chemistryReductionMethodI.hxx ├── chemistryReductionMethodNew_Imp.hxx ├── chemistryReductionMethod_Imp.hxx ├── chemistrySolver.hxx ├── chemistrySolverI.hxx ├── chemistryTabulationMethod.hxx ├── chemistryTabulationMethodI.hxx ├── chemistryTabulationMethodNew_Imp.hxx ├── chemkinLexer.L ├── chemkinReader.hxx ├── chemkinReaderI.hxx ├── circleRandom.hxx ├── className.hxx ├── clippedLinear.hxx ├── clock.hxx ├── clockTime.hxx ├── closedTriSurfaceMesh.hxx ├── cloud.hxx ├── cloudAbsorptionEmission.hxx ├── cloudInfo.hxx ├── cloudScatter.hxx ├── cloudSolution.hxx ├── cloudSolutionI.hxx ├── coalCloud.hxx ├── coalCloudList.hxx ├── coalCloudListI.hxx ├── coalParcel.hxx ├── codeStream.hxx ├── codedBase.hxx ├── codedFixedValueFvPatchField.hxx ├── codedFixedValueFvPatchFieldI.hxx ├── codedFixedValueFvPatchFields.hxx ├── codedFixedValueFvPatchFieldsFwd.hxx ├── codedFixedValuePointPatchField.hxx ├── codedFixedValuePointPatchFieldI.hxx ├── codedFixedValuePointPatchFields.hxx ├── codedFixedValuePointPatchFieldsFwd.hxx ├── codedFunctionObject.hxx ├── codedMixedFvPatchField.hxx ├── codedMixedFvPatchFieldI.hxx ├── codedMixedFvPatchFields.hxx ├── codedMixedFvPatchFieldsFwd.hxx ├── collatedFileOperation.hxx ├── combineFaces.hxx ├── combineGatherScatterI.hxx ├── combustionModel.hxx ├── combustionModelI.hxx ├── combustionModelTemplatesI.hxx ├── commSchedule.hxx ├── compactSpatialTensor.hxx ├── complex.hxx ├── complexFields.hxx ├── complexI.hxx ├── complexVector.hxx ├── complexVectorI.hxx ├── componentDisplacementMotionSolver.hxx ├── componentVelocityMotionSolver.hxx ├── components.hxx ├── componentsTemplates.hxx ├── compositeBody.hxx ├── compositeBodyI.hxx ├── compositeJoint.hxx ├── compressibleContinuityErrs.lxx ├── compressibleCourantNo.lxx ├── compressibleCreatePhi.lxx ├── compressibleInterFoamLibs_Module.hxx ├── compressibleInterPhaseTransportModel.hxx ├── compressibleMakeTurbulenceModel.hxx ├── compressibleTransportModel.hxx ├── compressibleTurbulenceModel.hxx ├── conformalVoronoiMesh.hxx ├── conformalVoronoiMeshI.hxx ├── conformalVoronoiMeshTemplatesI.hxx ├── conformationSurfaces.hxx ├── conformationSurfacesI.hxx ├── constAnIsoSolidTransport.hxx ├── constAnIsoSolidTransportI.hxx ├── constAnIsoSolidTransport_Imp.hxx ├── constIsoSolidTransport.hxx ├── constIsoSolidTransportI.hxx ├── constIsoSolidTransport_Imp.hxx ├── constLaminarFlameSpeed.hxx ├── constTransport.hxx ├── constTransportI.hxx ├── constTransport_Imp.hxx ├── constantAbsorptionEmission.hxx ├── constantAlphaContactAngleFvPatchScalarField.hxx ├── constantFilmThermo.hxx ├── constantHeatTransfer.hxx ├── constantRadiation.hxx ├── constantScatter.hxx ├── constantSurfaceTension.hxx ├── constantViscosity.hxx ├── constants.hxx ├── constrainHbyA.hxx ├── constrainPressure.hxx ├── constrainPressureI.hxx ├── consumptionSpeed.hxx ├── contactAngleForce.hxx ├── contiguous.hxx ├── continuityErrs.lxx ├── continuousGasKEqn.hxx ├── continuousGasKEqnI.hxx ├── controlMeshRefinement.hxx ├── convectionScheme.hxx ├── convectionSchemeI.hxx ├── convectiveHeatTransferFvPatchScalarField.hxx ├── convergenceControl.hxx ├── convergenceControlI.hxx ├── coordSet.hxx ├── coordinateRotation.hxx ├── coordinateSystem.hxx ├── coordinateSystems.hxx ├── correctedSnGrad.hxx ├── correctedSnGradI.hxx ├── correctorConvergenceControl.hxx ├── correctorConvergenceControlI.hxx ├── correlationFunction.hxx ├── correlationFunctionI.hxx ├── correlationFunctionIO_Imp.hxx ├── correlationFunction_Imp.hxx ├── coulomb.hxx ├── coupleGroupIdentifier.hxx ├── coupleGroupIdentifierI.hxx ├── coupledFacePointPatch.hxx ├── coupledFvPatch.hxx ├── coupledFvPatchField.hxx ├── coupledFvPatchFieldI.hxx ├── coupledFvPatchFields.hxx ├── coupledFvPatchFieldsFwd.hxx ├── coupledFvsPatchField.hxx ├── coupledFvsPatchFieldI.hxx ├── coupledFvsPatchFields.hxx ├── coupledFvsPatchFieldsFwd.hxx ├── coupledPointPatch.hxx ├── coupledPointPatchField.hxx ├── coupledPointPatchFieldI.hxx ├── coupledPointPatchFields.hxx ├── coupledPolyPatch.hxx ├── cpuTime.hxx ├── crankConRod.hxx ├── createAutoCorrelationFunctions.lxx ├── createControl.lxx ├── createDyMControls.lxx ├── createDynamicFvMesh.lxx ├── createEngineMesh.lxx ├── createEngineTime.lxx ├── createFvOptions.lxx ├── createIncompressibleRadiationModel.lxx ├── createMDFields.lxx ├── createMRF.lxx ├── createMesh.lxx ├── createMeshNoClear.lxx ├── createNamedDynamicFvMesh.lxx ├── createNamedMesh.lxx ├── createNamedPolyMesh.lxx ├── createPhi.lxx ├── createPhiv.lxx ├── createPimpleControl.lxx ├── createPisoControl.lxx ├── createPolyMesh.lxx ├── createRDeltaT.lxx ├── createRadiationModel.lxx ├── createRefUnits.lxx ├── createRhoUf.lxx ├── createRhoUfIfPresent.lxx ├── createShellMesh.hxx ├── createSimpleControl.lxx ├── createTime.lxx ├── createTimeControls.lxx ├── createUf.lxx ├── createUfIfPresent.lxx ├── csvSetWriter.hxx ├── csvSetWriterI.hxx ├── csvTableReader.hxx ├── csvTableReaderI.hxx ├── cubeRootVolDelta.hxx ├── cubic.hxx ├── cubicEqn.hxx ├── cubicEqnI.hxx ├── cubicGradientLimiter.hxx ├── cubicUpwindFitPolynomial.hxx ├── cuboid.hxx ├── cuboidI.hxx ├── curvatureSeparation.hxx ├── curve.hxx ├── curveTools.hxx ├── cut.hxx ├── cutI.hxx ├── cutTemplatesI.hxx ├── cuttingPlane.hxx ├── cuttingPlaneI.hxx ├── cv2DControls.hxx ├── cv2DControlsI.hxx ├── cvControls.hxx ├── cvControlsI.hxx ├── cyclicACMIFvPatch.hxx ├── cyclicACMIFvPatchField.hxx ├── cyclicACMIFvPatchFieldI.hxx ├── cyclicACMIFvPatchFields.hxx ├── cyclicACMIFvPatchFieldsFwd.hxx ├── cyclicACMIFvsPatchField.hxx ├── cyclicACMIFvsPatchFields.hxx ├── cyclicACMIFvsPatchFieldsFwd.hxx ├── cyclicACMIGAMGInterface.hxx ├── cyclicACMIGAMGInterfaceField.hxx ├── cyclicACMILduInterface.hxx ├── cyclicACMILduInterfaceField.hxx ├── cyclicACMIPointPatch.hxx ├── cyclicACMIPointPatchField.hxx ├── cyclicACMIPointPatchFields.hxx ├── cyclicACMIPolyPatch.hxx ├── cyclicACMIPolyPatchI.hxx ├── cyclicAMIFvPatch.hxx ├── cyclicAMIFvPatchField.hxx ├── cyclicAMIFvPatchFieldI.hxx ├── cyclicAMIFvPatchFields.hxx ├── cyclicAMIFvPatchFieldsFwd.hxx ├── cyclicAMIFvsPatchField.hxx ├── cyclicAMIFvsPatchFieldI.hxx ├── cyclicAMIFvsPatchFields.hxx ├── cyclicAMIFvsPatchFieldsFwd.hxx ├── cyclicAMIGAMGInterface.hxx ├── cyclicAMIGAMGInterfaceField.hxx ├── cyclicAMILduInterface.hxx ├── cyclicAMILduInterfaceField.hxx ├── cyclicAMIPointPatch.hxx ├── cyclicAMIPointPatchField.hxx ├── cyclicAMIPointPatchFieldI.hxx ├── cyclicAMIPointPatchFields.hxx ├── cyclicAMIPolyPatch.hxx ├── cyclicAMIPolyPatchI.hxx ├── cyclicAMIPolyPatchTemplatesI.hxx ├── cyclicFvPatch.hxx ├── cyclicFvPatchField.hxx ├── cyclicFvPatchFieldI.hxx ├── cyclicFvPatchFields.hxx ├── cyclicFvPatchFieldsFwd.hxx ├── cyclicFvsPatchField.hxx ├── cyclicFvsPatchFieldI.hxx ├── cyclicFvsPatchFields.hxx ├── cyclicFvsPatchFieldsFwd.hxx ├── cyclicGAMGInterface.hxx ├── cyclicGAMGInterfaceField.hxx ├── cyclicLduInterface.hxx ├── cyclicLduInterfaceField.hxx ├── cyclicPointPatch.hxx ├── cyclicPointPatchField.hxx ├── cyclicPointPatchFieldI.hxx ├── cyclicPointPatchFields.hxx ├── cyclicPolyPatch.hxx ├── cyclicRepeatAMIFvPatch.hxx ├── cyclicRepeatAMIFvPatchField.hxx ├── cyclicRepeatAMIFvPatchFields.hxx ├── cyclicRepeatAMIFvPatchFieldsFwd.hxx ├── cyclicRepeatAMIFvsPatchField.hxx ├── cyclicRepeatAMIFvsPatchFields.hxx ├── cyclicRepeatAMIFvsPatchFieldsFwd.hxx ├── cyclicRepeatAMIGAMGInterface.hxx ├── cyclicRepeatAMIGAMGInterfaceField.hxx ├── cyclicRepeatAMILduInterface.hxx ├── cyclicRepeatAMILduInterfaceField.hxx ├── cyclicRepeatAMIPointPatch.hxx ├── cyclicRepeatAMIPointPatchField.hxx ├── cyclicRepeatAMIPointPatchFields.hxx ├── cyclicRepeatAMIPolyPatch.hxx ├── cyclicRepeatAMIPolyPatchI.hxx ├── cyclicSector.hxx ├── cyclicSlipFvPatch.hxx ├── cyclicSlipFvPatchField.hxx ├── cyclicSlipFvPatchFieldI.hxx ├── cyclicSlipFvPatchFields.hxx ├── cyclicSlipFvPatchFieldsFwd.hxx ├── cyclicSlipFvsPatchField.hxx ├── cyclicSlipFvsPatchFieldI.hxx ├── cyclicSlipFvsPatchFields.hxx ├── cyclicSlipFvsPatchFieldsFwd.hxx ├── cyclicSlipPointPatch.hxx ├── cyclicSlipPointPatchField.hxx ├── cyclicSlipPointPatchFieldI.hxx ├── cyclicSlipPointPatchFields.hxx ├── cyclicSlipPolyPatch.hxx ├── cylinderAnnulusToCell.hxx ├── cylinderAnnulusToFace.hxx ├── cylinderToCell.hxx ├── cylinderToFace.hxx ├── cylindrical.hxx ├── cylindricalCS.hxx ├── cylindricalInletVelocityFvPatchVectorField.hxx ├── d2dt2Scheme.hxx ├── d2dt2SchemeI.hxx ├── dampedCoulomb.hxx ├── damping.hxx ├── data.hxx ├── ddt.hxx ├── ddtScheme.hxx ├── ddtSchemeI.hxx ├── ddtTemplates.hxx ├── decomposedBlockData.hxx ├── decompositionConstraint.hxx ├── decompositionMethod.hxx ├── decompositionModel.hxx ├── deelx.hxx ├── defineDebugSwitch.hxx ├── degenerateMatcher.hxx ├── demandDrivenData.hxx ├── demandDrivenEntry.hxx ├── demandDrivenEntryI.hxx ├── demandDrivenEntry_Imp.hxx ├── diagTensor.hxx ├── diagTensorField.hxx ├── diagTensorFieldIOField.hxx ├── diagTensorIOField.hxx ├── diagonalPreconditioner.hxx ├── diagonalSolver.hxx ├── dictionary.hxx ├── dictionaryEntry.hxx ├── dictionaryListEntry.hxx ├── dictionaryTemplatesI.hxx ├── diffusion.hxx ├── diffusionI.hxx ├── dimensionSet.hxx ├── dimensionSets.hxx ├── dimensionedConstants.hxx ├── dimensionedScalar.hxx ├── dimensionedScalarFwd.hxx ├── dimensionedSphericalTensor.hxx ├── dimensionedSymmTensor.hxx ├── dimensionedTensor.hxx ├── dimensionedType.hxx ├── dimensionedTypeI.hxx ├── dimensionedTypes.hxx ├── dimensionedVector.hxx ├── directAMI.hxx ├── directFieldMapper.hxx ├── directFieldMapperI.hxx ├── directFvPatchFieldMapper.hxx ├── directMethod.hxx ├── directPointPatchFieldMapper.hxx ├── direction.hxx ├── directionInfo.hxx ├── directionInfoI.hxx ├── directionMixedFvPatchField.hxx ├── directionMixedFvPatchFieldI.hxx ├── directionMixedFvPatchFields.hxx ├── directionMixedFvPatchFieldsFwd.hxx ├── directionalDiffusivity.hxx ├── directions.hxx ├── displacementComponentLaplacianFvMotionSolver.hxx ├── displacementInterpolationMotionSolver.hxx ├── displacementLaplacianFvMotionSolver.hxx ├── displacementLayeredMotionMotionSolver.hxx ├── displacementLinearMotionMotionSolver.hxx ├── displacementMeshMoverMotionSolver.hxx ├── displacementMotionSolver.hxx ├── displacementSBRStressFvMotionSolver.hxx ├── distanceSurface.hxx ├── distanceSurfaceI.hxx ├── distributedTriSurfaceMesh.hxx ├── distributedTriSurfaceMeshI.hxx ├── distributedWeightedFvPatchFieldMapper.hxx ├── distributedWeightedFvPatchFieldMapperI.hxx ├── distributionContactAngleForce.hxx ├── distributionModel.hxx ├── div.hxx ├── divScheme.hxx ├── divSchemeI.hxx ├── divTemplates.hxx ├── dlLibraryTable.hxx ├── dlLibraryTableI.hxx ├── doubleFloat.hxx ├── doubleScalar.hxx ├── doubleSigmoid.hxx ├── downwind.hxx ├── drippingInjection.hxx ├── dsmcCloud.hxx ├── dsmcFields.hxx ├── dsmcParcel.hxx ├── dummyAgglomeration.hxx ├── dummyISstream.hxx ├── dummyIstream.hxx ├── dummyTransform.hxx ├── duplicatePoints.hxx ├── dynamicAlphaContactAngleFvPatchScalarField.hxx ├── dynamicCode.hxx ├── dynamicCodeContext.hxx ├── dynamicFvMesh.hxx ├── dynamicIndexedOctree.hxx ├── dynamicIndexedOctreeI.hxx ├── dynamicInkJetFvMesh.hxx ├── dynamicInterpolatedFvMesh.hxx ├── dynamicKEqn.hxx ├── dynamicKEqnI.hxx ├── dynamicLagrangian.hxx ├── dynamicLagrangianI.hxx ├── dynamicMeshPointInterpolator.hxx ├── dynamicMotionSolverFvMesh.hxx ├── dynamicRefineFvMesh.hxx ├── dynamicTreeDataPoint.hxx ├── eConstThermo.hxx ├── eConstThermoI.hxx ├── eConstThermo_Imp.hxx ├── eRefConstThermo.hxx ├── eRefConstThermoI.hxx ├── eagerGAMGProcAgglomeration.hxx ├── eddyViscosity.hxx ├── eddyViscosityI.hxx ├── edge.hxx ├── edgeCollapser.hxx ├── edgeFaceCirculator.hxx ├── edgeFaceCirculatorI.hxx ├── edgeI.hxx ├── edgeIOList.hxx ├── edgeIntersections.hxx ├── edgeList.hxx ├── edgeMesh.hxx ├── edgeMeshFormat.hxx ├── edgeMeshFormatsCore.hxx ├── edgeMeshI.hxx ├── edgeSurface.hxx ├── edgeVertex.hxx ├── effectivenessHeatExchangerSource.hxx ├── egrMixture.hxx ├── egrMixtureI.hxx ├── electromagneticConstants.hxx ├── electrostaticPotential.hxx ├── emptyFvPatch.hxx ├── emptyFvPatchField.hxx ├── emptyFvPatchFieldI.hxx ├── emptyFvPatchFields.hxx ├── emptyFvPatchFieldsFwd.hxx ├── emptyFvsPatchField.hxx ├── emptyFvsPatchFieldI.hxx ├── emptyFvsPatchFields.hxx ├── emptyFvsPatchFieldsFwd.hxx ├── emptyPointPatch.hxx ├── emptyPointPatchField.hxx ├── emptyPointPatchFieldI.hxx ├── emptyPointPatchFields.hxx ├── emptyPolyPatch.hxx ├── energyJumpAMIFvPatchScalarField.hxx ├── energyJumpFvPatchScalarField.hxx ├── energyScalingFunction.hxx ├── engineMesh.hxx ├── enginePiston.hxx ├── engineTime.hxx ├── engineValve.hxx ├── enrichedPatch.hxx ├── ensightFile.hxx ├── ensightGeoFile.hxx ├── ensightPTraits.hxx ├── ensightPart.hxx ├── ensightPartCells.hxx ├── ensightPartFaces.hxx ├── ensightPartI.hxx ├── ensightParts.hxx ├── ensightPartsI.hxx ├── ensightSetWriter.hxx ├── ensightSetWriterI.hxx ├── ensightSurfaceWriter.hxx ├── enstrophy.hxx ├── entry.hxx ├── epsilonWallFunctionFvPatchScalarField.hxx ├── equilibrium.hxx ├── error.hxx ├── errorManip.hxx ├── etcFiles.hxx ├── exchangeI.hxx ├── explicitPorositySource.hxx ├── exponential.hxx ├── exponentialDiffusivity.hxx ├── exponentialParticleStressModel.hxx ├── exponentialRepulsion.hxx ├── exponentialSolidTransport.hxx ├── exponentialSolidTransportI.hxx ├── exponentialSolidTransport_Imp.hxx ├── extendedCellToCellStencil.hxx ├── extendedCellToCellStencilI.hxx ├── extendedCellToFaceStencil.hxx ├── extendedCellToFaceStencilI.hxx ├── extendedCentredCellToCellStencil.hxx ├── extendedCentredCellToFaceStencil.hxx ├── extendedCentredFaceToCellStencil.hxx ├── extendedEdgeMesh.hxx ├── extendedEdgeMeshFormat.hxx ├── extendedEdgeMeshI.hxx ├── extendedEdgeMeshTemplatesI.hxx ├── extendedFaceToCellStencil.hxx ├── extendedFaceToCellStencilI.hxx ├── extendedFeatureEdgeMesh.hxx ├── extendedFeatureEdgeMeshFormat.hxx ├── extendedUpwindCellToFaceStencil.hxx ├── extendedUpwindCellToFaceStencilI.hxx ├── externalCoupledMixedFvPatchField.hxx ├── externalCoupledMixedFvPatchFieldI.hxx ├── externalCoupledMixedFvPatchFields.hxx ├── externalCoupledMixedFvPatchFieldsFwd.hxx ├── externalCoupledTemperatureMixedFvPatchScalarField.hxx ├── externalDisplacementMeshMover.hxx ├── externalPointEdgePoint.hxx ├── externalPointEdgePointI.hxx ├── externalWallHeatFluxTemperatureFvPatchScalarField.hxx ├── extrapolatedCalculatedFvPatchField.hxx ├── extrapolatedCalculatedFvPatchFieldI.hxx ├── extrapolatedCalculatedFvPatchFields.hxx ├── extrapolatedCalculatedFvPatchFieldsFwd.hxx ├── extrude2DMesh.hxx ├── extrudeModel.hxx ├── extrudePatchMesh.hxx ├── extrudedMesh.hxx ├── extrudedMeshI.hxx ├── fWallFunctionFvPatchScalarField.hxx ├── face.hxx ├── faceAreaIntersect.hxx ├── faceAreaIntersectI.hxx ├── faceAreaPairGAMGAgglomeration.hxx ├── faceAreaWeightAMI.hxx ├── faceAreaWeightModel.hxx ├── faceCentredCubic.hxx ├── faceCollapser.hxx ├── faceCorrectedSnGrad.hxx ├── faceCorrectedSnGradI.hxx ├── faceCoupleInfo.hxx ├── faceCoupleInfoI.hxx ├── faceI.hxx ├── faceIOList.hxx ├── faceLimitedGrad.hxx ├── faceList.hxx ├── faceListFwd.hxx ├── faceMDLimitedGrad.hxx ├── faceMapper.hxx ├── facePointPatch.hxx ├── faceSet.hxx ├── faceTemplatesI.hxx ├── faceToCell.hxx ├── faceToCellStencil.hxx ├── faceToFace.hxx ├── faceToPoint.hxx ├── faceTriangulation.hxx ├── faceZone.hxx ├── faceZoneMesh.hxx ├── faceZoneMeshFwd.hxx ├── faceZoneSet.hxx ├── faceZoneToCell.hxx ├── faceZoneToFaceZone.hxx ├── fanPressureFvPatchScalarField.hxx ├── fanPressureJumpFvPatchScalarField.hxx ├── featureEdgeMesh.hxx ├── featurePointConformer.hxx ├── featurePointConformerI.hxx ├── fft.hxx ├── fftRenumber.hxx ├── fieldAverage.hxx ├── fieldAverageItem.hxx ├── fieldAverageTemplates.hxx ├── fieldCoordinateSystemTransform.hxx ├── fieldCoordinateSystemTransformTemplates.hxx ├── fieldDictionary.hxx ├── fieldExpression.hxx ├── fieldExpressionTemplates.hxx ├── fieldFromFile.hxx ├── fieldMapper.hxx ├── fieldMapperI.hxx ├── fieldMinMax.hxx ├── fieldMinMaxTemplates.hxx ├── fieldToCell.hxx ├── fieldTypes.hxx ├── fieldValue.hxx ├── fieldValueDelta.hxx ├── fieldValueDeltaTemplates.hxx ├── fieldValueI.hxx ├── fieldValueTemplates.hxx ├── fieldsExpression.hxx ├── fieldsExpressionTemplates.hxx ├── fileControl.hxx ├── fileDiffusivity.hxx ├── fileMonitor.hxx ├── fileName.hxx ├── fileNameI.hxx ├── fileNameList.hxx ├── fileOperation.hxx ├── fileOperationInitialise.hxx ├── fileStat.hxx ├── filmHeightInletVelocityFvPatchVectorField.hxx ├── filmPyrolysisRadiativeCoupledMixedFvPatchScalarField.hxx ├── filmPyrolysisTemperatureCoupledFvPatchScalarField.hxx ├── filmPyrolysisVelocityCoupledFvPatchVectorField.hxx ├── filmRadiationModel.hxx ├── filmSubModelBase.hxx ├── filmSubModelBaseI.hxx ├── filmSubModelBase_Imp.hxx ├── filmThermoModel.hxx ├── filmTurbulenceModel.hxx ├── filmViscosityModel.hxx ├── filteredLinear.hxx ├── filteredLinear2.hxx ├── filteredLinear2V.hxx ├── filteredLinear3.hxx ├── filteredLinear3V.hxx ├── findCellParticle.hxx ├── findCellPointFaceTet.hxx ├── findCellPointFaceTriangle.hxx ├── findRefCell.hxx ├── fixedBlended.hxx ├── fixedCoeff.hxx ├── fixedEnergyFvPatchScalarField.hxx ├── fixedFluxExtrapolatedPressureFvPatchScalarField.hxx ├── fixedFluxPressureFvPatchScalarField.hxx ├── fixedGradientFvPatchField.hxx ├── fixedGradientFvPatchFieldI.hxx ├── fixedGradientFvPatchFields.hxx ├── fixedGradientFvPatchFieldsFwd.hxx ├── fixedInternalValueFvPatchField.hxx ├── fixedInternalValueFvPatchFieldI.hxx ├── fixedInternalValueFvPatchFields.hxx ├── fixedJumpAMIFvPatchField.hxx ├── fixedJumpAMIFvPatchFieldI.hxx ├── fixedJumpAMIFvPatchFields.hxx ├── fixedJumpAMIFvPatchFieldsFwd.hxx ├── fixedJumpFvPatchField.hxx ├── fixedJumpFvPatchFieldI.hxx ├── fixedJumpFvPatchFields.hxx ├── fixedJumpFvPatchFieldsFwd.hxx ├── fixedMeanFvPatchField.hxx ├── fixedMeanFvPatchFieldI.hxx ├── fixedMeanFvPatchFields.hxx ├── fixedMeanFvPatchFieldsFwd.hxx ├── fixedMeanOutletInletFvPatchField.hxx ├── fixedMeanOutletInletFvPatchFieldI.hxx ├── fixedMeanOutletInletFvPatchFields.hxx ├── fixedMeanOutletInletFvPatchFieldsFwd.hxx ├── fixedNormalInletOutletVelocityFvPatchVectorField.hxx ├── fixedNormalSlipFvPatchField.hxx ├── fixedNormalSlipFvPatchFieldI.hxx ├── fixedNormalSlipFvPatchFields.hxx ├── fixedNormalSlipFvPatchFieldsFwd.hxx ├── fixedNormalSlipPointPatchField.hxx ├── fixedNormalSlipPointPatchFieldI.hxx ├── fixedNormalSlipPointPatchFields.hxx ├── fixedPressureCompressibleDensityFvPatchScalarField.hxx ├── fixedProfileFvPatchField.hxx ├── fixedProfileFvPatchFieldI.hxx ├── fixedProfileFvPatchFields.hxx ├── fixedProfileFvPatchFieldsFwd.hxx ├── fixedShearStressFvPatchVectorField.hxx ├── fixedTemperatureConstraint.hxx ├── fixedTrim.hxx ├── fixedUnburntEnthalpyFvPatchScalarField.hxx ├── fixedValue.hxx ├── fixedValueFvPatchField.hxx ├── fixedValueFvPatchFieldI.hxx ├── fixedValueFvPatchFields.hxx ├── fixedValueFvPatchFieldsFwd.hxx ├── fixedValueFvsPatchField.hxx ├── fixedValueFvsPatchFieldI.hxx ├── fixedValueFvsPatchFields.hxx ├── fixedValueFvsPatchFieldsFwd.hxx ├── fixedValuePointPatchField.hxx ├── fixedValuePointPatchFieldI.hxx ├── fixedValuePointPatchFields.hxx ├── flipOp.hxx ├── floatScalar.hxx ├── floatTensor.hxx ├── floatVector.hxx ├── floatingJoint.hxx ├── flowRateInletVelocityFvPatchVectorField.hxx ├── flowRateOutletVelocityFvPatchVectorField.hxx ├── flowType.hxx ├── fluidSolutionControl.hxx ├── fluidSolutionControlI.hxx ├── fluidThermo.hxx ├── fluxCorrectedVelocityFvPatchVectorField.hxx ├── foamChemistryReader.hxx ├── foamChemistryReaderI.hxx ├── foamSurfaceWriter.hxx ├── force.hxx ├── forceCoeffs.hxx ├── forceList.hxx ├── forceSuSp.hxx ├── forceSuSpI.hxx ├── forces.hxx ├── fourthGrad.hxx ├── fourthGradI.hxx ├── freePiston.hxx ├── freestreamFvPatchField.hxx ├── freestreamFvPatchFieldI.hxx ├── freestreamFvPatchFields.hxx ├── freestreamFvPatchFieldsFwd.hxx ├── freestreamPressureFvPatchScalarField.hxx ├── freestreamVelocityFvPatchVectorField.hxx ├── function.hxx ├── function1Viscosity.hxx ├── functionDot.hxx ├── functionEntry.hxx ├── functionObject.hxx ├── functionObjectList.hxx ├── fundamentalConstants.hxx ├── fv.hxx ├── fvBoundaryMesh.hxx ├── fvBoundaryMeshMapper.hxx ├── fvCFD.hxx ├── fvDOM.hxx ├── fvDOMI.hxx ├── fvFieldDecomposer.hxx ├── fvFieldDecomposerDecomposeFieldsI.hxx ├── fvFieldReconstructor.hxx ├── fvFieldReconstructorReconstructFieldsI.hxx ├── fvMatrices.hxx ├── fvMatricesFwd.hxx ├── fvMatrix.hxx ├── fvMatrixI.hxx ├── fvMatrixSolve_Imp.hxx ├── fvMesh.hxx ├── fvMeshAdder.hxx ├── fvMeshAdderI.hxx ├── fvMeshDistribute.hxx ├── fvMeshDistributeI.hxx ├── fvMeshFunctionObject.hxx ├── fvMeshI.hxx ├── fvMeshLduAddressing.hxx ├── fvMeshMapper.hxx ├── fvMeshSubset.hxx ├── fvMeshSubsetInterpolate_Imp.hxx ├── fvMeshTools.hxx ├── fvMeshToolsI.hxx ├── fvMotionSolver.hxx ├── fvMotionSolverEngineMesh.hxx ├── fvMotionSolverI.hxx ├── fvOption.hxx ├── fvOptionI.hxx ├── fvOptionList.hxx ├── fvOptionListI.hxx ├── fvOptions.hxx ├── fvPatch.hxx ├── fvPatchField.hxx ├── fvPatchFieldI.hxx ├── fvPatchFieldMapper.hxx ├── fvPatchFieldNew_Imp.hxx ├── fvPatchFields.hxx ├── fvPatchFieldsFwd.hxx ├── fvPatchFvMeshTemplates_Imp.hxx ├── fvPatchI.hxx ├── fvPatchList.hxx ├── fvPatchMapper.hxx ├── fvScalarMatrix.hxx ├── fvSchemes.hxx ├── fvSolution.hxx ├── fvSurfaceMapper.hxx ├── fvc.hxx ├── fvcAverage.hxx ├── fvcAverageI.hxx ├── fvcCellReduce.hxx ├── fvcCellReduceI.hxx ├── fvcCurl.hxx ├── fvcCurlI.hxx ├── fvcD2dt2.hxx ├── fvcD2dt2I.hxx ├── fvcDDtTemplate.hxx ├── fvcDDtTemplateI.hxx ├── fvcDdt.hxx ├── fvcDdtI.hxx ├── fvcDiv.hxx ├── fvcDivI.hxx ├── fvcFlux.hxx ├── fvcFluxI.hxx ├── fvcGrad.hxx ├── fvcGradI.hxx ├── fvcLaplacian.hxx ├── fvcLaplacianI.hxx ├── fvcMagSqrGradGrad.hxx ├── fvcMagSqrGradGradI.hxx ├── fvcMeshPhi.hxx ├── fvcReconstruct.hxx ├── fvcReconstructI.hxx ├── fvcSimpleReconstruct_Imp.hxx ├── fvcSmooth.hxx ├── fvcSnGrad.hxx ├── fvcSnGradI.hxx ├── fvcSup.hxx ├── fvcSupI.hxx ├── fvcSurfaceIntegrate.hxx ├── fvcSurfaceIntegrateI.hxx ├── fvcVolumeIntegrate.hxx ├── fvcVolumeIntegrateI.hxx ├── fvm.hxx ├── fvmD2dt2.hxx ├── fvmD2dt2I.hxx ├── fvmDdt.hxx ├── fvmDdtI.hxx ├── fvmDiv.hxx ├── fvmDivI.hxx ├── fvmLaplacian.hxx ├── fvmLaplacianI.hxx ├── fvmSup.hxx ├── fvmSupI.hxx ├── fvsPatchField.hxx ├── fvsPatchFieldI.hxx ├── fvsPatchFieldNew_Imp.hxx ├── fvsPatchFields.hxx ├── fvsPatchFieldsFwd.hxx ├── gatherScatterI.hxx ├── gatherScatterListI.hxx ├── gaussConvectionScheme.hxx ├── gaussConvectionSchemeI.hxx ├── gaussDivScheme.hxx ├── gaussDivSchemeI.hxx ├── gaussGrad.hxx ├── gaussGradI.hxx ├── gaussLaplacianScheme.hxx ├── gaussLaplacianSchemeI.hxx ├── general.hxx ├── generalFieldMapper.hxx ├── generalFieldMapperI.hxx ├── generalizedNewtonian.hxx ├── generalizedNewtonianI.hxx ├── generalizedNewtonianViscosityModel.hxx ├── genericFvPatch.hxx ├── genericPointPatch.hxx ├── genericPolyPatch.hxx ├── geomCellLooper.hxx ├── geomDecomp.hxx ├── geometricOneField.hxx ├── geometricOneFieldI.hxx ├── geometricSurfacePatch.hxx ├── geometricSurfacePatchList.hxx ├── geometricZeroField.hxx ├── geometricZeroFieldI.hxx ├── geompack.hxx ├── gh.lxx ├── globalIOLists.hxx ├── globalIndex.hxx ├── globalIndexAndTransform.hxx ├── globalIndexAndTransformI.hxx ├── globalIndexI.hxx ├── globalIndexTemplatesI.hxx ├── globalMeshData.hxx ├── globalMeshDataTemplatesI.hxx ├── globalPoints.hxx ├── gnuplotGraph.hxx ├── gnuplotSetWriter.hxx ├── gnuplotSetWriterI.hxx ├── grad.hxx ├── gradScheme.hxx ├── gradSchemeI.hxx ├── gradTemplates.hxx ├── gradientEnergyFvPatchScalarField.hxx ├── gradientUnburntEnthalpyFvPatchScalarField.hxx ├── gradingDescriptor.hxx ├── gradingDescriptors.hxx ├── graph.hxx ├── greyDiffusiveRadiationMixedFvPatchScalarField.hxx ├── greyDiffusiveViewFactorFixedValueFvPatchScalarField.hxx ├── greyMean.hxx ├── greyMeanCombustion.hxx ├── greyMeanSolid.hxx ├── gzstream.hxx ├── hConstThermo.hxx ├── hConstThermoI.hxx ├── hConstThermo_Imp.hxx ├── hPolynomialThermo.hxx ├── hPolynomialThermoI.hxx ├── hPowerThermo.hxx ├── hPowerThermoI.hxx ├── hRefConstThermo.hxx ├── hRefConstThermoI.hxx ├── hRefConstThermo_Imp.hxx ├── halfCosineRamp.hxx ├── halfCosineRampI.hxx ├── harmonic.hxx ├── harmonicSpring.hxx ├── hashSignedLabel.hxx ├── hashedWordList.hxx ├── hashedWordListI.hxx ├── hePsiThermo.hxx ├── hePsiThermoI.hxx ├── heRhoThermo.hxx ├── heRhoThermoI.hxx ├── heSolidThermo.hxx ├── heSolidThermoI.hxx ├── heThermo.hxx ├── heThermoI.hxx ├── heatTransferModel.hxx ├── heheuPsiThermo.hxx ├── heheuPsiThermoI.hxx ├── hexCellLooper.hxx ├── hexMatcher.hxx ├── hexRef8.hxx ├── hexRef8Data.hxx ├── hierarchGeomDecomp.hxx ├── homogeneousMixture.hxx ├── homogeneousMixtureI.hxx ├── hostCollatedFileOperation.hxx ├── iC3H8O.hxx ├── iC3H8OI.hxx ├── icoPolynomial.hxx ├── icoPolynomialI.hxx ├── icoPolynomial_Imp.hxx ├── icoUncoupledKinematicCloud.hxx ├── ifEntry.hxx ├── ifeqEntry.hxx ├── ignite.lxx ├── ignition.hxx ├── ignitionSite.hxx ├── immiscibleIncompressibleTwoPhaseMixture.hxx ├── inclinedFilmNusseltHeightFvPatchScalarField.hxx ├── inclinedFilmNusseltInletVelocityFvPatchVectorField.hxx ├── includeAllModules.hxx ├── includeEntry.hxx ├── includeEtcEntry.hxx ├── includeFuncEntry.hxx ├── includeIfPresentEntry.hxx ├── includeModule.hxx ├── incompressibleAlphatJayatillekeWallFunctionFvPatchScalarField.hxx ├── incompressiblePerfectGas.hxx ├── incompressiblePerfectGasI.hxx ├── incompressibleTurbulenceModel.hxx ├── incompressibleTwoPhaseMixture.hxx ├── indexedCell.hxx ├── indexedCellChecks.hxx ├── indexedCellChecksI.hxx ├── indexedCellEnum.hxx ├── indexedCellI.hxx ├── indexedCellOps.hxx ├── indexedCellOpsI.hxx ├── indexedCell_Imp.hxx ├── indexedFace2D.hxx ├── indexedFace2DI.hxx ├── indexedOctree.hxx ├── indexedOctreeI.hxx ├── indexedParticle.hxx ├── indexedParticleCloud.hxx ├── indexedVertex.hxx ├── indexedVertex2D.hxx ├── indexedVertex2DI.hxx ├── indexedVertexEnum.hxx ├── indexedVertexI.hxx ├── indexedVertexOps.hxx ├── indexedVertexOpsI.hxx ├── indexedVertex_Imp.hxx ├── indirectCellList.hxx ├── indirectFaceList.hxx ├── indirectPointList.hxx ├── indirectPrimitivePatch.hxx ├── infiniteReactionRate.hxx ├── infiniteReactionRateI.hxx ├── infinitelyFastChemistry.hxx ├── infinitelyFastChemistryI.hxx ├── inhomogeneousMixture.hxx ├── inhomogeneousMixtureI.hxx ├── initContinuityErrs.lxx ├── initialPointsMethod.hxx ├── injectionModel.hxx ├── injectionModelList.hxx ├── inletOutletFvPatchField.hxx ├── inletOutletFvPatchFieldI.hxx ├── inletOutletFvPatchFields.hxx ├── inletOutletFvPatchFieldsFwd.hxx ├── inletOutletTotalTemperatureFvPatchScalarField.hxx ├── inputModeEntry.hxx ├── instant.hxx ├── instantList.hxx ├── int.hxx ├── int32.hxx ├── int64.hxx ├── integrationScheme.hxx ├── integrationSchemeI.hxx ├── interRegionExplicitPorositySource.hxx ├── interRegionHeatTransferModel.hxx ├── interRegionHeatTransferModelI.hxx ├── interRegionHeatTransferModelTemplatesI.hxx ├── interRegionOption.hxx ├── interRegionOptionI.hxx ├── interfaceCompression.hxx ├── interfaceCompressionFvPatchScalarField.hxx ├── interfaceHeight.hxx ├── interfaceProperties.hxx ├── internalWriter.hxx ├── internalWriterI.hxx ├── interpolatePointToCell.hxx ├── interpolatePointToCellI.hxx ├── interpolateSplineXY.hxx ├── interpolateSplineXYI.hxx ├── interpolateXY.hxx ├── interpolateXYI.hxx ├── interpolatingSolidBodyMotionSolver.hxx ├── interpolation.hxx ├── interpolation2DTable.hxx ├── interpolation2DTableI.hxx ├── interpolationCell.hxx ├── interpolationCellI.hxx ├── interpolationCellPatchConstrained.hxx ├── interpolationCellPatchConstrainedI.hxx ├── interpolationCellPoint.hxx ├── interpolationCellPointFace.hxx ├── interpolationCellPointFaceI.hxx ├── interpolationCellPointI.hxx ├── interpolationCellPointWallModified.hxx ├── interpolationCellPointWallModifiedI.hxx ├── interpolationCellPoint_Imp.hxx ├── interpolationI.hxx ├── interpolationLookUpTable.hxx ├── interpolationLookUpTableI.hxx ├── interpolationLookUpTable_Imp.hxx ├── interpolationNew_Imp.hxx ├── interpolationPointMVC.hxx ├── interpolationPointMVCI.hxx ├── interpolationPointMVC_Imp.hxx ├── interpolationTable.hxx ├── interpolationTableI.hxx ├── interpolationWeights.hxx ├── interpolationWeightsI.hxx ├── intersectedSurface.hxx ├── intersection.hxx ├── interstitialInletVelocityFvPatchVectorField.hxx ├── inverseDistanceDiffusivity.hxx ├── inverseFaceDistanceDiffusivity.hxx ├── inversePointDistanceDiffusivity.hxx ├── inverseVolumeDiffusivity.hxx ├── isoSurface.hxx ├── isoSurfaceI.hxx ├── isotropic.hxx ├── isotropicDamping.hxx ├── janafThermo.hxx ├── janafThermoI.hxx ├── janafThermo_Imp.hxx ├── jobInfo.hxx ├── joint.hxx ├── jointBody.hxx ├── jointBodyI.hxx ├── jointI.hxx ├── joints.hxx ├── jplotGraph.hxx ├── jplotSetWriter.hxx ├── jplotSetWriterI.hxx ├── jumpCyclicAMIFvPatchField.hxx ├── jumpCyclicAMIFvPatchFieldI.hxx ├── jumpCyclicAMIFvPatchFields.hxx ├── jumpCyclicAMIFvPatchFieldsFwd.hxx ├── jumpCyclicFvPatchField.hxx ├── jumpCyclicFvPatchFieldI.hxx ├── jumpCyclicFvPatchFields.hxx ├── jumpCyclicFvPatchFieldsFwd.hxx ├── kEpsilon.hxx ├── kEpsilonI.hxx ├── kEqn.hxx ├── kEqnI.hxx ├── kLowReWallFunctionFvPatchScalarField.hxx ├── kOmega.hxx ├── kOmegaI.hxx ├── kOmegaSST.hxx ├── kOmegaSSTBase.hxx ├── kOmegaSSTBaseI.hxx ├── kOmegaSSTDES.hxx ├── kOmegaSSTDESI.hxx ├── kOmegaSSTI.hxx ├── kOmegaSSTLM.hxx ├── kOmegaSSTLMI.hxx ├── kOmegaSSTSAS.hxx ├── kOmegaSSTSASI.hxx ├── kShellIntegration.hxx ├── keyType.hxx ├── keyTypeI.hxx ├── kinematicCloud.hxx ├── kinematicParcelInjectionData.hxx ├── kinematicParcelInjectionDataI.hxx ├── kinematicParcelInjectionDataIOList.hxx ├── kinematicSingleLayer.hxx ├── kinematicSingleLayerI.hxx ├── kinematicSingleLayer_Imp.hxx ├── kkLOmega.hxx ├── kqRWallFunctionFvPatchField.hxx ├── kqRWallFunctionFvPatchFieldI.hxx ├── kqRWallFunctionFvPatchFields.hxx ├── label.hxx ├── labelBits.hxx ├── labelField.hxx ├── labelFieldIOField.hxx ├── labelIOField.hxx ├── labelIOList.hxx ├── labelList.hxx ├── labelListIOList.hxx ├── labelPair.hxx ├── labelPairLookup.hxx ├── labelRange.hxx ├── labelRangeI.hxx ├── labelRanges.hxx ├── labelRangesI.hxx ├── labelSpecific.hxx ├── labelSphericalTensor.hxx ├── labelSymmTensor.hxx ├── labelTensor.hxx ├── labelToCell.hxx ├── labelToFace.hxx ├── labelToPoint.hxx ├── labelVector.hxx ├── labelledTri.hxx ├── labelledTriI.hxx ├── lagrangianWriter.hxx ├── lagrangianWriterI.hxx ├── laminar.hxx ├── laminarFlameSpeed.hxx ├── laminarModelTemplate.hxx ├── laminarModelTemplateI.hxx ├── laminarTemplate.hxx ├── laminarTemplateI.hxx ├── laplaceFilter.hxx ├── laplacianScheme.hxx ├── laplacianSchemeI.hxx ├── layerAdditionRemoval.hxx ├── layerParameters.hxx ├── layeredEngineMesh.hxx ├── lduAddressing.hxx ├── lduInterface.hxx ├── lduInterfaceField.hxx ├── lduInterfaceFieldPtrsList.hxx ├── lduInterfacePtrsList.hxx ├── lduMatrix.hxx ├── lduMatrixTemplates_Imp.hxx ├── lduMesh.hxx ├── lduMeshTemplatesI.hxx ├── lduPrimitiveMesh.hxx ├── lduPrimitiveMeshTemplatesI.hxx ├── lduSchedule.hxx ├── leastSquaresGrad.hxx ├── leastSquaresGradI.hxx ├── leastSquaresVectors.hxx ├── lennardJones.hxx ├── levelSet.hxx ├── levelSetI.hxx ├── limitTemperature.hxx ├── limitVelocity.hxx ├── limitWith.hxx ├── limitedCubic.hxx ├── limitedCubicV.hxx ├── limitedLinear.hxx ├── limitedSnGrad.hxx ├── limitedSnGradI.hxx ├── limitedSurfaceInterpolationScheme.hxx ├── limitedSurfaceInterpolationSchemeI.hxx ├── limiterBlended.hxx ├── line.hxx ├── lineCell.hxx ├── lineCellFace.hxx ├── lineDivide.hxx ├── lineEdge.hxx ├── lineFace.hxx ├── lineI.hxx ├── linePoint2DRef.hxx ├── linePointRef.hxx ├── lineUniform.hxx ├── linear.hxx ├── linearAxialAngularSpring.hxx ├── linearBarotropicCompressibilityModel.hxx ├── linearDamper.hxx ├── linearDirection.hxx ├── linearDistance.hxx ├── linearEqn.hxx ├── linearEqnI.hxx ├── linearEquationOfState.hxx ├── linearEquationOfStateI.hxx ├── linearEquationOfState_Imp.hxx ├── linearFitPolynomial.hxx ├── linearInterpolationWeights.hxx ├── linearMotion.hxx ├── linearNormal.hxx ├── linearRadial.hxx ├── linearRamp.hxx ├── linearRampI.hxx ├── linearSpatial.hxx ├── linearSpring.hxx ├── linearUpwind.hxx ├── linearUpwindV.hxx ├── linearViscousStress.hxx ├── linearViscousStressI.hxx ├── liquidFilmThermo.hxx ├── liquidMixtureProperties.hxx ├── liquidProperties.hxx ├── liquidPropertiesI.hxx ├── liquidPropertiesSurfaceTension.hxx ├── liquidThermo.hxx ├── liquidViscosity.hxx ├── listOptions.lxx ├── listOutput.lxx ├── localBlended.hxx ├── localEulerDdtScheme.hxx ├── localEulerDdtSchemeI.hxx ├── localIOdictionary.hxx ├── localMax.hxx ├── localMin.hxx ├── localPointRegion.hxx ├── log.hxx ├── logFiles.hxx ├── logPolynomialTransport.hxx ├── logPolynomialTransportI.hxx ├── logPolynomialTransport_Imp.hxx ├── longDoubleScalar.hxx ├── lookupProfile.hxx ├── macros.hxx ├── mag.hxx ├── magSqr.hxx ├── magSqrTemplates.hxx ├── magTemplates.hxx ├── maitlandSmith.hxx ├── makeChemistryModel.hxx ├── makeChemistryReductionMethods.hxx ├── makeChemistrySolverTypes.hxx ├── makeChemistryTabulationMethods.hxx ├── makeCoalParcelSurfaceReactionModels.hxx ├── makeCombustionTypes.hxx ├── makeFvOption.hxx ├── makeGraph.hxx ├── makeMPPICParcelDampingModels.hxx ├── makeMPPICParcelIsotropyModels.hxx ├── makeMPPICParcelPackingModels.hxx ├── makeParcelCloudFunctionObjects.hxx ├── makeParcelCollisionModels.hxx ├── makeParcelDispersionModels.hxx ├── makeParcelForces.hxx ├── makeParcelHeatTransferModels.hxx ├── makeParcelInjectionModels.hxx ├── makeParcelPatchInteractionModels.hxx ├── makeParcelStochasticCollisionModels.hxx ├── makeParcelSurfaceFilmModels.hxx ├── makeParcelTurbulenceDispersionModels.hxx ├── makeReactingMultiphaseParcelCompositionModels.hxx ├── makeReactingMultiphaseParcelDevolatilisationModels.hxx ├── makeReactingMultiphaseParcelInjectionModels.hxx ├── makeReactingMultiphaseParcelStochasticCollisionModels.hxx ├── makeReactingMultiphaseParcelSurfaceReactionModels.hxx ├── makeReactingParcelCompositionModels.hxx ├── makeReactingParcelInjectionModels.hxx ├── makeReactingParcelPhaseChangeModels.hxx ├── makeReactingParcelSurfaceFilmModels.hxx ├── makeReactingSolidThermo.hxx ├── makeReaction.hxx ├── makeReactionThermo.hxx ├── makeSolidChemistryModel.hxx ├── makeSolidChemistrySolverType.hxx ├── makeSolidReaction.hxx ├── makeSolidThermo.hxx ├── makeSootTypes.hxx ├── makeSprayParcelAtomizationModels.hxx ├── makeSprayParcelBreakupModels.hxx ├── makeSprayParcelInjectionModels-0.hxx ├── makeSprayParcelInjectionModels.hxx ├── makeSprayParcelStochasticCollisionModels.hxx ├── makeSurfaceWriterMethods.hxx ├── makeThermo.hxx ├── makeThermoParcelSurfaceFilmModels.hxx ├── makeThermoParcelTurbulenceForces.hxx ├── makeTurbulenceModel.hxx ├── manualDecomp.hxx ├── manualGAMGProcAgglomeration.hxx ├── manualRenumber.hxx ├── mapAddedPolyMesh.hxx ├── mapClouds.hxx ├── mapDistribute.hxx ├── mapDistributeBase.hxx ├── mapDistributeBaseTemplatesI.hxx ├── mapDistributeLagrangian.hxx ├── mapDistributePolyMesh.hxx ├── mapDistributeTemplatesI.hxx ├── mapNearestAMI.hxx ├── mapNearestMethod.hxx ├── mapPatchChange.hxx ├── mapPolyMesh.hxx ├── mapSubsetMesh.hxx ├── mappedConvectiveHeatTransfer.hxx ├── mappedFieldFvPatchField.hxx ├── mappedFieldFvPatchFieldI.hxx ├── mappedFieldFvPatchFields.hxx ├── mappedFieldFvPatchFieldsFwd.hxx ├── mappedFixedInternalValueFvPatchField.hxx ├── mappedFixedInternalValueFvPatchFieldI.hxx ├── mappedFixedInternalValueFvPatchFields.hxx ├── mappedFixedInternalValueFvPatchFieldsFwd.hxx ├── mappedFixedPushedInternalValueFvPatchField.hxx ├── mappedFixedPushedInternalValueFvPatchFieldI.hxx ├── mappedFixedPushedInternalValueFvPatchFields.hxx ├── mappedFixedPushedInternalValueFvPatchFieldsFwd.hxx ├── mappedFixedValueFvPatchField.hxx ├── mappedFixedValueFvPatchFieldI.hxx ├── mappedFixedValueFvPatchFields.hxx ├── mappedFixedValueFvPatchFieldsFwd.hxx ├── mappedFlowRateFvPatchVectorField.hxx ├── mappedFvPatch.hxx ├── mappedPatchBase.hxx ├── mappedPatchBaseI.hxx ├── mappedPatchBaseTemplatesI.hxx ├── mappedPatchFieldBase.hxx ├── mappedPatchFieldBaseI.hxx ├── mappedPointPatch.hxx ├── mappedPolyPatch.hxx ├── mappedVariableThicknessWallFvPatch.hxx ├── mappedVariableThicknessWallPolyPatch.hxx ├── mappedVelocityFluxFixedValueFvPatchField.hxx ├── mappedWallFvPatch.hxx ├── mappedWallPointPatch.hxx ├── mappedWallPolyPatch.hxx ├── massRosinRammler.hxx ├── masslessBody.hxx ├── masslessBodyI.hxx ├── masterCoarsestGAMGProcAgglomeration.hxx ├── masterOFstream.hxx ├── masterUncollatedFileOperation.hxx ├── masterUncollatedFileOperationI.hxx ├── matchPoints.hxx ├── matchedFlowRateOutletVelocityFvPatchVectorField.hxx ├── mathematicalConstants.hxx ├── maxDeltaxyz.hxx ├── md.hxx ├── meanMomentumEnergyAndNMols.lxx ├── meanVelocityForce.hxx ├── medialAxisMeshMover.hxx ├── memInfo.hxx ├── memberFunctionSelectionTables.hxx ├── mergePoints.hxx ├── mergePointsI.hxx ├── meshCourantNo.lxx ├── meshCutAndRemove.hxx ├── meshCutter.hxx ├── meshReader.hxx ├── meshRefinement.hxx ├── meshRefinementTemplatesI.hxx ├── meshSearch.hxx ├── meshSearchFACE_CENTRE_TRISMeshObject.hxx ├── meshSearchMeshObject.hxx ├── meshStructure.hxx ├── meshStructureI.hxx ├── meshToMesh.hxx ├── meshToMesh0.hxx ├── meshToMesh0I.hxx ├── meshToMeshI.hxx ├── meshToMeshMethod.hxx ├── meshToMeshMethodI.hxx ├── meshToMeshTemplatesI.hxx ├── meshTools.hxx ├── meshToolsI.hxx ├── meshTriangulation.hxx ├── meshWavePatchDistMethod.hxx ├── meshWriter.hxx ├── messageStream.hxx ├── metisDecomp.hxx ├── midPoint.hxx ├── minData.hxx ├── minDataI.hxx ├── minmodGradientLimiter.hxx ├── mixedEnergyFvPatchScalarField.hxx ├── mixedFvPatchField.hxx ├── mixedFvPatchFieldI.hxx ├── mixedFvPatchFields.hxx ├── mixedFvPatchFieldsFwd.hxx ├── mixedUnburntEnthalpyFvPatchScalarField.hxx ├── mixtureFraction.hxx ├── mixtureFractionI.hxx ├── moleFractions.hxx ├── moleFractionsFunctionObjects.hxx ├── moleFractionsI.hxx ├── molecule.hxx ├── moleculeCloud.hxx ├── moleculeCloudI.hxx ├── moleculeI.hxx ├── momentOfInertia.hxx ├── morphFieldMapper.hxx ├── motionDiffusivity.hxx ├── motionDirectionalDiffusivity.hxx ├── motionSmoother.hxx ├── motionSmootherAlgo.hxx ├── motionSmootherAlgoI.hxx ├── motionSmootherData.hxx ├── motionSolver.hxx ├── motionSolverList.hxx ├── movingMeshContinuityErrs.lxx ├── movingMeshRhoUContinuityErrs.lxx ├── movingWallVelocityFvPatchVectorField.hxx ├── multiComponentMixture.hxx ├── multiComponentMixtureI.hxx ├── multiDirRefinement.hxx ├── multiLevelDecomp.hxx ├── multiMotion.hxx ├── multiNormal.hxx ├── multiRegionSolutionControl.hxx ├── multiSolidBodyMotionSolver.hxx ├── multivariateGaussConvectionScheme.hxx ├── multivariateGaussConvectionSchemeI.hxx ├── multivariateIndependentScheme.hxx ├── multivariateIndependentSchemeI.hxx ├── multivariateScheme.hxx ├── multivariateSchemeI.hxx ├── multivariateSelectionScheme.hxx ├── multivariateSelectionSchemeI.hxx ├── multivariateSurfaceInterpolationScheme.hxx ├── multivariateSurfaceInterpolationSchemeI.hxx ├── multivariateUpwind.hxx ├── nC3H8O.hxx ├── nC3H8OI.hxx ├── namedBlock.hxx ├── namedVertex.hxx ├── nastranSurfaceWriter.hxx ├── nastranSurfaceWriterI.hxx ├── nbrToCell.hxx ├── nearWallDist.hxx ├── nearWallDistNoSearch.hxx ├── nearWallFields.hxx ├── nearWallFieldsTemplates.hxx ├── nearestToCell.hxx ├── nearestToPoint.hxx ├── negEntry.hxx ├── nil.hxx ├── noAbsorptionEmission.hxx ├── noChemistryReduction.hxx ├── noChemistryReductionI.hxx ├── noChemistrySolver.hxx ├── noChemistrySolverI.hxx ├── noChemistryTabulation.hxx ├── noChemistryTabulationI.hxx ├── noCombustion.hxx ├── noCombustionI.hxx ├── noCorrectionLimiting.hxx ├── noDecomp.hxx ├── noFilm.hxx ├── noInteraction.hxx ├── noPhaseChange.hxx ├── noPreconditioner.hxx ├── noPyrolysis.hxx ├── noRadiation.hxx ├── noScaling.hxx ├── noScatter.hxx ├── noSlipFvPatchVectorField.hxx ├── noSoot.hxx ├── noSurfaceWriter.hxx ├── noThermo.hxx ├── noiseFFT.hxx ├── nonBlockingGaussSeidelSmoother.hxx ├── nonEquilibrium.hxx ├── nonOrthogonalSolutionControl.hxx ├── nonOrthogonalSolutionControlI.hxx ├── nonUniformField.hxx ├── noneGAMGProcAgglomeration.hxx ├── nonlinearEddyViscosity.hxx ├── nonlinearEddyViscosityI.hxx ├── nonuniformTransformCyclicFvPatch.hxx ├── nonuniformTransformCyclicFvPatchField.hxx ├── nonuniformTransformCyclicFvPatchFieldI.hxx ├── nonuniformTransformCyclicFvPatchFields.hxx ├── nonuniformTransformCyclicFvPatchFieldsFwd.hxx ├── nonuniformTransformCyclicFvsPatchField.hxx ├── nonuniformTransformCyclicFvsPatchFieldI.hxx ├── nonuniformTransformCyclicFvsPatchFields.hxx ├── nonuniformTransformCyclicFvsPatchFieldsFwd.hxx ├── nonuniformTransformCyclicPointPatch.hxx ├── nonuniformTransformCyclicPointPatchField.hxx ├── nonuniformTransformCyclicPointPatchFieldI.hxx ├── nonuniformTransformCyclicPointPatchFields.hxx ├── nonuniformTransformCyclicPolyPatch.hxx ├── normal.hxx ├── normalToFace.hxx ├── nullJoint.hxx ├── nullObject.hxx ├── nullObjectI.hxx ├── nutLowReWallFunctionFvPatchScalarField.hxx ├── nutURoughWallFunctionFvPatchScalarField.hxx ├── nutUSpaldingWallFunctionFvPatchScalarField.hxx ├── nutUTabulatedWallFunctionFvPatchScalarField.hxx ├── nutUWallFunctionFvPatchScalarField.hxx ├── nutWallFunctionFvPatchScalarField.hxx ├── nutkFilmWallFunctionFvPatchScalarField.hxx ├── nutkRoughWallFunctionFvPatchScalarField.hxx ├── nutkWallFunctionFvPatchScalarField.hxx ├── objectHit.hxx ├── objectMap.hxx ├── objectMapI.hxx ├── objectRegistry.hxx ├── objectRegistryI.hxx ├── ode.hxx ├── odeI.hxx ├── oldCyclicPolyPatch.hxx ├── omegaWallFunctionFvPatchScalarField.hxx ├── one.hxx ├── oneField.hxx ├── oneFieldField.hxx ├── oneFieldFieldI.hxx ├── oneFieldI.hxx ├── oneI.hxx ├── opaqueSolid.hxx ├── openFoamTableReader.hxx ├── openFoamTableReaderI.hxx ├── oppositeFace.hxx ├── ops.hxx ├── orientedSurface.hxx ├── orthogonalSnGrad.hxx ├── orthogonalSnGradI.hxx ├── oscillatingDisplacementPointPatchVectorField.hxx ├── oscillatingLinearMotion.hxx ├── oscillatingRotatingMotion.hxx ├── oscillatingVelocityPointPatchVectorField.hxx ├── outletInletFvPatchField.hxx ├── outletInletFvPatchFieldI.hxx ├── outletInletFvPatchFields.hxx ├── outletInletFvPatchFieldsFwd.hxx ├── outletMappedUniformInletFvPatchField.hxx ├── outletMappedUniformInletFvPatchFieldI.hxx ├── outletMappedUniformInletFvPatchFields.hxx ├── outletMappedUniformInletFvPatchFieldsFwd.hxx ├── outletPhaseMeanVelocityFvPatchVectorField.hxx ├── outletStabilised.hxx ├── pTraits.hxx ├── pairGAMGAgglomeration.hxx ├── pairPatchAgglomeration.hxx ├── pairPatchAgglomerationI.hxx ├── pairPotential.hxx ├── pairPotentialI.hxx ├── pairPotentialList.hxx ├── pairPotentialListI.hxx ├── parRun.hxx ├── partialFaceAreaWeightAMI.hxx ├── partialSlipFvPatchField.hxx ├── partialSlipFvPatchFieldI.hxx ├── partialSlipFvPatchFields.hxx ├── partialSlipFvPatchFieldsFwd.hxx ├── particle.hxx ├── particleI.hxx ├── particleMacros.hxx ├── particleTemplatesI.hxx ├── passiveParticle.hxx ├── passiveParticleCloud.hxx ├── patchDataWave.hxx ├── patchDataWaveI.hxx ├── patchDistMethod.hxx ├── patchDistMethodI.hxx ├── patchEdgeFaceInfo.hxx ├── patchEdgeFaceInfoI.hxx ├── patchEdgeFaceRegion.hxx ├── patchEdgeFaceRegionI.hxx ├── patchEdgeFaceRegions.hxx ├── patchEdgeFaceRegionsI.hxx ├── patchFaceOrientation.hxx ├── patchFaceOrientationI.hxx ├── patchIdentifier.hxx ├── patchInjection.hxx ├── patchInjectionBase.hxx ├── patchInteractionData.hxx ├── patchInteractionDataList.hxx ├── patchMeanVelocityForce.hxx ├── patchPatchDist.hxx ├── patchProbes.hxx ├── patchProbesI.hxx ├── patchToFace.hxx ├── patchToPatchInterpolation.hxx ├── patchToPoly2DMesh.hxx ├── patchWave.hxx ├── patchWriter.hxx ├── patchWriterI.hxx ├── patchZones.hxx ├── perfectFluid.hxx ├── perfectFluidI.hxx ├── perfectGas.hxx ├── perfectGasI.hxx ├── perfectInterface.hxx ├── perturbedTemperatureDependentContactAngleForce.hxx ├── phaseChangeModel.hxx ├── phaseHydrostaticPressureFvPatchScalarField.hxx ├── phaseProperties.hxx ├── phasePropertiesList.hxx ├── phaseScalarTransport.hxx ├── physicoChemicalConstants.hxx ├── piecewiseLinearRamp.hxx ├── pimpleControl.hxx ├── pimpleControlI.hxx ├── pimpleLoop.hxx ├── pimpleLoopI.hxx ├── pimpleMultiRegionControl.hxx ├── pimpleMultiRegionControlI.hxx ├── pimpleNoLoopControl.hxx ├── pimpleNoLoopControlI.hxx ├── pisoControl.hxx ├── pisoControlI.hxx ├── pitchForkRing.hxx ├── plane.hxx ├── planeExtrusion.hxx ├── plenumPressureFvPatchScalarField.hxx ├── point.hxx ├── point2D.hxx ├── point2DField.hxx ├── point2DFieldFwd.hxx ├── point2DHit.hxx ├── pointBoundaryMesh.hxx ├── pointBoundaryMeshMapper.hxx ├── pointConstraint.hxx ├── pointConstraintI.hxx ├── pointConstraints.hxx ├── pointConstraintsI.hxx ├── pointConversion.hxx ├── pointData.hxx ├── pointDataI.hxx ├── pointEdgeCollapse.hxx ├── pointEdgeCollapseI.hxx ├── pointEdgePoint.hxx ├── pointEdgePointI.hxx ├── pointEdgeStructuredWalk.hxx ├── pointEdgeStructuredWalkI.hxx ├── pointFeatureEdgesTypes.hxx ├── pointField.hxx ├── pointFieldFwd.hxx ├── pointFieldReconstructor.hxx ├── pointFieldReconstructorReconstructFieldsI.hxx ├── pointFields.hxx ├── pointFieldsFwd.hxx ├── pointFile.hxx ├── pointHit.hxx ├── pointHitSort.hxx ├── pointIOField.hxx ├── pointIndexHit.hxx ├── pointIndexHitIOList.hxx ├── pointIndexHitList.hxx ├── pointLinear.hxx ├── pointMVCWeight.hxx ├── pointMVCWeightI.hxx ├── pointMapper.hxx ├── pointMesh.hxx ├── pointMeshMapper.hxx ├── pointPairs.hxx ├── pointPairsI.hxx ├── pointPatch.hxx ├── pointPatchDist.hxx ├── pointPatchField.hxx ├── pointPatchFieldFunctions.hxx ├── pointPatchFieldI.hxx ├── pointPatchFieldMapper.hxx ├── pointPatchFieldMapperPatchRef.hxx ├── pointPatchFieldNew_Imp.hxx ├── pointPatchFields.hxx ├── pointPatchFieldsFwd.hxx ├── pointPatchList.hxx ├── pointPatchMapper.hxx ├── pointSet.hxx ├── pointToCell.hxx ├── pointToFace.hxx ├── pointToPoint.hxx ├── pointToPointPlanarInterpolation.hxx ├── pointToPointPlanarInterpolationI.hxx ├── pointTopoDistanceData.hxx ├── pointTopoDistanceDataI.hxx ├── pointVertex.hxx ├── pointZone.hxx ├── pointZoneMesh.hxx ├── pointZoneMeshFwd.hxx ├── pointZoneSet.hxx ├── points.hxx ├── points0MotionSolver.hxx ├── polyAddCell.hxx ├── polyAddFace.hxx ├── polyAddPoint.hxx ├── polyBoundaryMesh.hxx ├── polyBoundaryMeshEntries.hxx ├── polyBoundaryMeshTemplatesI.hxx ├── polyDualMesh.hxx ├── polyLine.hxx ├── polyLineEdge.hxx ├── polyMesh.hxx ├── polyMeshAdder.hxx ├── polyMeshFilter.hxx ├── polyMeshFilterI.hxx ├── polyMeshFilterSettings.hxx ├── polyMeshFilterSettingsI.hxx ├── polyMeshGeometry.hxx ├── polyMeshModifier.hxx ├── polyMeshTetDecomposition.hxx ├── polyMeshTools.hxx ├── polyMeshZipUpCells.hxx ├── polyModifyCell.hxx ├── polyModifyFace.hxx ├── polyModifyPoint.hxx ├── polyPatch.hxx ├── polyPatchID.hxx ├── polyPatchList.hxx ├── polyRemoveCell.hxx ├── polyRemoveFace.hxx ├── polyRemovePoint.hxx ├── polyTopoChange.hxx ├── polyTopoChangeI.hxx ├── polyTopoChangeTemplatesI.hxx ├── polyTopoChanger.hxx ├── polynomialSolidTransport.hxx ├── polynomialSolidTransportI.hxx ├── polynomialSolidTransport_Imp.hxx ├── polynomialTransport.hxx ├── polynomialTransportI.hxx ├── polynomialTransport_Imp.hxx ├── porosityModel.hxx ├── porosityModelI.hxx ├── porosityModelList.hxx ├── porousBafflePressureFvPatchField.hxx ├── porousBafflePressureFvPatchFieldFwd.hxx ├── postProcess.lxx ├── potential.hxx ├── potentialI.hxx ├── powerLaw.hxx ├── powerLawGeneralizedNewtonian.hxx ├── powerLawI.hxx ├── powerSeriesReactionRate.hxx ├── powerSeriesReactionRateI.hxx ├── prefixOSstream.hxx ├── preserveBafflesConstraint.hxx ├── preserveFaceZonesConstraint.hxx ├── preservePatchTypes.hxx ├── preservePatchesConstraint.hxx ├── pressure.hxx ├── pressureControl.hxx ├── pressureControlI.hxx ├── pressureDirectedInletOutletVelocityFvPatchVectorField.hxx ├── pressureDirectedInletVelocityFvPatchVectorField.hxx ├── pressureFvPatchScalarField.hxx ├── pressureInletOutletParSlipVelocityFvPatchVectorField.hxx ├── pressureInletOutletVelocityFvPatchVectorField.hxx ├── pressureInletUniformVelocityFvPatchVectorField.hxx ├── pressureInletVelocityFvPatchVectorField.hxx ├── pressureNormalInletOutletVelocityFvPatchVectorField.hxx ├── prghTotalHydrostaticPressureFvPatchScalarField.hxx ├── primaryRadiation.hxx ├── primitiveEntry.hxx ├── primitiveEntryTemplatesI.hxx ├── primitiveFacePatch.hxx ├── primitiveFaceZone.hxx ├── primitiveFields.hxx ├── primitiveFieldsFwd.hxx ├── primitiveMesh.hxx ├── primitiveMeshGeometry.hxx ├── primitiveMeshI.hxx ├── primitiveMeshTools.hxx ├── primitivePatch.hxx ├── primitivePatchInterpolation.hxx ├── prismMatcher.hxx ├── probes.hxx ├── probesI.hxx ├── procFacesGAMGProcAgglomeration.hxx ├── procLduInterface.hxx ├── procLduMatrix.hxx ├── processorCyclicFvPatch.hxx ├── processorCyclicFvPatchField.hxx ├── processorCyclicFvPatchFieldI.hxx ├── processorCyclicFvPatchFields.hxx ├── processorCyclicFvPatchFieldsFwd.hxx ├── processorCyclicFvsPatchField.hxx ├── processorCyclicFvsPatchFieldI.hxx ├── processorCyclicFvsPatchFields.hxx ├── processorCyclicFvsPatchFieldsFwd.hxx ├── processorCyclicGAMGInterface.hxx ├── processorCyclicGAMGInterfaceField.hxx ├── processorCyclicPointPatch.hxx ├── processorCyclicPointPatchField.hxx ├── processorCyclicPointPatchFieldI.hxx ├── processorCyclicPointPatchFields.hxx ├── processorCyclicPolyPatch.hxx ├── processorField.hxx ├── processorFvPatch.hxx ├── processorFvPatchField.hxx ├── processorFvPatchFieldI.hxx ├── processorFvPatchFields.hxx ├── processorFvPatchFieldsFwd.hxx ├── processorFvPatchScalarField.hxx ├── processorFvsPatchField.hxx ├── processorFvsPatchFieldI.hxx ├── processorFvsPatchFields.hxx ├── processorFvsPatchFieldsFwd.hxx ├── processorGAMGInterface.hxx ├── processorGAMGInterfaceField.hxx ├── processorLduInterface.hxx ├── processorLduInterfaceField.hxx ├── processorLduInterfaceTemplatesI.hxx ├── processorMeshes.hxx ├── processorPointPatch.hxx ├── processorPointPatchField.hxx ├── processorPointPatchFieldI.hxx ├── processorPointPatchFields.hxx ├── processorPolyPatch.hxx ├── processorTopology.hxx ├── products.hxx ├── profileModel.hxx ├── profileModelList.hxx ├── projectCurveEdge.hxx ├── projectEdge.hxx ├── projectFace.hxx ├── projectVertex.hxx ├── proxySurfaceWriter.hxx ├── psiReactionThermo.hxx ├── psiThermo.hxx ├── psiuReactionThermo.hxx ├── ptscotchDecomp.hxx ├── pureMixture.hxx ├── pureMixtureI.hxx ├── pureUpwindCFCCellToFaceStencilObject.hxx ├── pyrMatcher.hxx ├── pyramid.hxx ├── pyramidI.hxx ├── pyramidPointFaceRef.hxx ├── pyrolysisChemistryModel.hxx ├── pyrolysisChemistryModelI.hxx ├── pyrolysisChemistryModel_Imp.hxx ├── pyrolysisModel.hxx ├── pyrolysisModelCollection.hxx ├── pyrolysisModelI.hxx ├── qZeta.hxx ├── quadraticDiffusivity.hxx ├── quadraticEqn.hxx ├── quadraticEqnI.hxx ├── quadraticFitPolynomial.hxx ├── quadraticLinearFitPolynomial.hxx ├── quadraticLinearUpwindFitPolynomial.hxx ├── quadraticRamp.hxx ├── quadraticRampI.hxx ├── quadraticUpwindFitPolynomial.hxx ├── quarterCosineRamp.hxx ├── quarterCosineRampI.hxx ├── quarterSineRamp.hxx ├── quarterSineRampI.hxx ├── quaternion.hxx ├── quaternionField.hxx ├── quaternionI.hxx ├── quaternionIOField.hxx ├── radial.hxx ├── radialActuationDiskSource.hxx ├── radialActuationDiskSourceTemplatesI.hxx ├── radiation.hxx ├── radiationCoupledBase.hxx ├── radiationModel.hxx ├── radiativeIntensityRay.hxx ├── radiativeIntensityRayI.hxx ├── ramp.hxx ├── rampHoldFall.hxx ├── rampI.hxx ├── randomRenumber.hxx ├── randomise.hxx ├── randomiseTemplates.hxx ├── rawGraph.hxx ├── rawSetWriter.hxx ├── rawSetWriterI.hxx ├── rawSurfaceWriter.hxx ├── rayShooting.hxx ├── reactingCloud.hxx ├── reactingMixture.hxx ├── reactingMixtureI.hxx ├── reactingMultiphaseCloud.hxx ├── reactingMultiphaseParcelInjectionData.hxx ├── reactingMultiphaseParcelInjectionDataI.hxx ├── reactingMultiphaseParcelInjectionDataIOList.hxx ├── reactingOneDim.hxx ├── reactingOneDimI.hxx ├── reactingParcelInjectionData.hxx ├── reactingParcelInjectionDataI.hxx ├── reactingParcelInjectionDataIOList.hxx ├── reactionRateFlameArea.hxx ├── reactionTypes.hxx ├── readDyMControls.lxx ├── readEngineTimeControls.lxx ├── readFieldsTemplates.hxx ├── readGravitationalAcceleration.lxx ├── readHexLabel.hxx ├── readPointFields.lxx ├── readSurfaceFields.lxx ├── readTimeControls.lxx ├── readVolFields.lxx ├── readhRef.lxx ├── readpRef.lxx ├── realizableKE.hxx ├── realizableKEI.hxx ├── reconstructLagrangian.hxx ├── reconstructLagrangianFieldsI.hxx ├── reducedUnits.hxx ├── reducedUnitsI.hxx ├── refCount.hxx ├── referredWallFace.hxx ├── referredWallFaceI.hxx ├── refineCell.hxx ├── refinementData.hxx ├── refinementDataI.hxx ├── refinementDistanceData.hxx ├── refinementDistanceDataI.hxx ├── refinementFeatures.hxx ├── refinementHistory.hxx ├── refinementHistoryConstraint.hxx ├── refinementIterator.hxx ├── refinementParameters.hxx ├── refinementSurfaces.hxx ├── regExp.hxx ├── regIOobject.hxx ├── regIOobjectI.hxx ├── regionCoupledBase.hxx ├── regionCoupledBaseFvPatch.hxx ├── regionCoupledBaseGAMGInterface.hxx ├── regionCoupledBaseI.hxx ├── regionCoupledFvPatch.hxx ├── regionCoupledGAMGInterface.hxx ├── regionCoupledGAMGInterfaceField.hxx ├── regionCoupledLduInterface.hxx ├── regionCoupledPointPatch.hxx ├── regionCoupledPolyPatch.hxx ├── regionCoupledWallFvPatch.hxx ├── regionCoupledWallGAMGInterface.hxx ├── regionCoupledWallGAMGInterfaceField.hxx ├── regionCoupledWallPointPatch.hxx ├── regionCoupledWallPolyPatch.hxx ├── regionFunctionObject.hxx ├── regionFunctionObjectI.hxx ├── regionModel.hxx ├── regionModel1D.hxx ├── regionModel1DI.hxx ├── regionModelFunctionObject.hxx ├── regionModelFunctionObjectList.hxx ├── regionModelFunctionObjectListI.hxx ├── regionModelI.hxx ├── regionModelTemplatesI.hxx ├── regionProperties.hxx ├── regionSizeDistribution.hxx ├── regionSizeDistributionTemplates.hxx ├── regionSplit.hxx ├── regionToCell.hxx ├── regionToFace.hxx ├── registerSwitch.hxx ├── relative.hxx ├── relaxationModel.hxx ├── relaxationRateFlameAreaModels.hxx ├── removeCaseOptions.lxx ├── removeCells.hxx ├── removeEntry.hxx ├── removeFaces.hxx ├── removePoints.hxx ├── removeRegisteredObject.hxx ├── renumberMethod.hxx ├── repatchPolyTopoChanger.hxx ├── resetMDFields.lxx ├── residuals.hxx ├── residualsTemplates.hxx ├── restrainedHarmonicSpring.hxx ├── reverseLinear.hxx ├── rhoConst.hxx ├── rhoConstI.hxx ├── rhoConst_Imp.hxx ├── rhoEqn.lxx ├── rhoReactionThermo.hxx ├── rhoThermo.hxx ├── rigid.hxx ├── rigidBody.hxx ├── rigidBodyI.hxx ├── rigidBodyInertia.hxx ├── rigidBodyInertiaI.hxx ├── rigidBodyMeshMotion.hxx ├── rigidBodyMeshMotionSolver.hxx ├── rigidBodyModel.hxx ├── rigidBodyModelI.hxx ├── rigidBodyModelState.hxx ├── rigidBodyModelStateI.hxx ├── rigidBodyMotion.hxx ├── rigidBodyMotionI.hxx ├── rigidBodyRestraint.hxx ├── rigidBodyRestraintI.hxx ├── rigidBodySolver.hxx ├── rigidBodySolverI.hxx ├── rigidBodyState.hxx ├── rodas23.hxx ├── rodas34.hxx ├── rotatedBoxToCell.hxx ├── rotatingMotion.hxx ├── rotatingPressureInletOutletVelocityFvPatchVectorField.hxx ├── rotatingTotalPressureFvPatchScalarField.hxx ├── rotatingWallVelocityFvPatchVectorField.hxx ├── rotorDiskSource.hxx ├── rotorDiskSourceI.hxx ├── rotorDiskSourceTemplatesI.hxx ├── rpm.hxx ├── runTimeSelectionTables.hxx ├── sampledCuttingPlane.hxx ├── sampledCuttingPlaneI.hxx ├── sampledIsoSurface.hxx ├── sampledIsoSurfaceI.hxx ├── sampledPatch.hxx ├── sampledPatchI.hxx ├── sampledPatchInternalField.hxx ├── sampledPatchInternalFieldI.hxx ├── sampledPlane.hxx ├── sampledPlaneI.hxx ├── sampledSet.hxx ├── sampledSets.hxx ├── sampledSetsI.hxx ├── sampledSetsTemplatesI.hxx ├── sampledSurface.hxx ├── sampledSurfaceI.hxx ├── sampledSurfaces.hxx ├── sampledSurfacesI.hxx ├── sampledThresholdCellFaces.hxx ├── sampledThresholdCellFacesI.hxx ├── sampledTriSurfaceMesh.hxx ├── sampledTriSurfaceMeshI.hxx ├── scalar.hxx ├── scalarField.hxx ├── scalarFieldField.hxx ├── scalarFieldFieldI.hxx ├── scalarFieldIOField.hxx ├── scalarIOField.hxx ├── scalarIOList.hxx ├── scalarList.hxx ├── scalarListIOList.hxx ├── scalarMatrices.hxx ├── scalarMatricesTemplatesI.hxx ├── scalarRange.hxx ├── scalarRanges.hxx ├── scalarTransport.hxx ├── scaleTemplates.hxx ├── scatterModel.hxx ├── scotchDecomp.hxx ├── searchableBox.hxx ├── searchableBoxFeatures.hxx ├── searchableCylinder.hxx ├── searchableDisk.hxx ├── searchableExtrudedCircle.hxx ├── searchablePlane.hxx ├── searchablePlate.hxx ├── searchablePlateFeatures.hxx ├── searchableSphere.hxx ├── searchableSurface.hxx ├── searchableSurfaceCollection.hxx ├── searchableSurfaceControl.hxx ├── searchableSurfaceFeatures.hxx ├── searchableSurfaceToFaceZone.hxx ├── searchableSurfaceWithGaps.hxx ├── searchableSurfaces.hxx ├── searchableSurfacesQueries.hxx ├── sector.hxx ├── sensibleEnthalpy.hxx ├── sensibleInternalEnergy.hxx ├── septernion.hxx ├── septernionI.hxx ├── seriesProfile.hxx ├── setAndNormalToFaceZone.hxx ├── setConstantMeshDictionaryIO.lxx ├── setDeltaT.lxx ├── setInitialDeltaT.lxx ├── setRootCase.lxx ├── setRootCaseLists.lxx ├── setSizeFieldMapper.hxx ├── setSizeFieldMapperI.hxx ├── setSystemMeshDictionaryIO.lxx ├── setSystemRunTimeDictionaryIO.lxx ├── setTimeStepFunctionObject.hxx ├── setToCellZone.hxx ├── setToFaceZone.hxx ├── setToPointZone.hxx ├── setUpdater.hxx ├── setUpdaterI.hxx ├── setsToFaceZone.hxx ├── seulex.hxx ├── shapeToCell.hxx ├── shellSurfaces.hxx ├── shifted.hxx ├── shiftedForce.hxx ├── shortEdgeFilter2D.hxx ├── sigFpe.hxx ├── sigInt.hxx ├── sigQuit.hxx ├── sigSegv.hxx ├── sigStopAtWriteNow.hxx ├── sigWriteNow.hxx ├── sigmaRadial.hxx ├── sigmoid.hxx ├── simpleControl.hxx ├── simpleFilter.hxx ├── simpleGeomDecomp.hxx ├── simpleMatrix.hxx ├── simpleMatrixI.hxx ├── simpleObjectRegistry.hxx ├── simpleRegIOobject.hxx ├── singleCellFvMesh.hxx ├── singleCellFvMeshInterpolate_Imp.hxx ├── singleComponentMixture.hxx ├── singleComponentMixtureI.hxx ├── singleLayerRegion.hxx ├── singleLayerRegionI.hxx ├── singlePhaseTransportModel.hxx ├── singleProcessorFaceSetsConstraint.hxx ├── singleRegionConvergenceControl.hxx ├── singleRegionCorrectorConvergenceControl.hxx ├── singleRegionSolutionControl.hxx ├── singleRegionSolutionControlI.hxx ├── singleRegionSolutionControlTemplatesI.hxx ├── singleStepCombustion.hxx ├── singleStepCombustionI.hxx ├── singleStepReactingMixture.hxx ├── singleStepReactingMixtureI.hxx ├── singleStepReactingMixture_Imp.hxx ├── sixDoFLinearAxialAngularSpring.hxx ├── sixDoFLinearDamper.hxx ├── sixDoFLinearSpring.hxx ├── sixDoFRigidBodyControl.hxx ├── sixDoFRigidBodyMotion.hxx ├── sixDoFRigidBodyMotionAxisConstraint.hxx ├── sixDoFRigidBodyMotionConstraint.hxx ├── sixDoFRigidBodyMotionI.hxx ├── sixDoFRigidBodyMotionLineConstraint.hxx ├── sixDoFRigidBodyMotionOrientationConstraint.hxx ├── sixDoFRigidBodyMotionPlaneConstraint.hxx ├── sixDoFRigidBodyMotionPointConstraint.hxx ├── sixDoFRigidBodyMotionRestraint.hxx ├── sixDoFRigidBodyMotionSolver.hxx ├── sixDoFRigidBodyMotionState.hxx ├── sixDoFRigidBodyMotionStateI.hxx ├── sixDoFRigidBodyState.hxx ├── sixDoFSolver.hxx ├── sixDoFSolverI.hxx ├── sixDoFSphericalAngularDamper.hxx ├── sixDoFSphericalAngularSpring.hxx ├── sixDoFTabulatedAxialAngularSpring.hxx ├── skewCorrected.hxx ├── skewCorrectionVectors.hxx ├── slicedFvPatchField.hxx ├── slicedFvPatchFieldI.hxx ├── slicedFvPatchFields.hxx ├── slicedFvPatchFieldsFwd.hxx ├── slicedFvsPatchField.hxx ├── slicedFvsPatchFieldI.hxx ├── slicedFvsPatchFields.hxx ├── slicedFvsPatchFieldsFwd.hxx ├── slicedSurfaceFields.hxx ├── slicedSurfaceFieldsFwd.hxx ├── slicedVolFields.hxx ├── slicedVolFieldsFwd.hxx ├── slidingInterface.hxx ├── slipFvPatchField.hxx ├── slipFvPatchFieldI.hxx ├── slipFvPatchFields.hxx ├── slipFvPatchFieldsFwd.hxx ├── slipPointPatchField.hxx ├── slipPointPatchFieldI.hxx ├── slipPointPatchFields.hxx ├── smoothAlignmentSolver.hxx ├── smoothData.hxx ├── smoothDataI.hxx ├── smoothDelta.hxx ├── smoothDeltaDeltaDataI.hxx ├── smoothSolver.hxx ├── snGradScheme.hxx ├── snGradSchemeI.hxx ├── snapParameters.hxx ├── snappyLayerDriver.hxx ├── snappyLayerDriverTemplates.hxx ├── snappyRefineDriver.hxx ├── snappySnapDriver.hxx ├── solidArrheniusReactionRate.hxx ├── solidArrheniusReactionRateI.hxx ├── solidBodyMotionFunction.hxx ├── solidBodyMotionSolver.hxx ├── solidChemistryModel.hxx ├── solidChemistryModelI.hxx ├── solidChemistryModel_Imp.hxx ├── solidEqulibriumEnergySource.hxx ├── solidMixtureProperties.hxx ├── solidNoLoopControl.hxx ├── solidParticle.hxx ├── solidParticleCloud.hxx ├── solidParticleCloudI.hxx ├── solidParticleI.hxx ├── solidProperties.hxx ├── solidPropertiesI.hxx ├── solidReactionThermo.hxx ├── solidThermo.hxx ├── solidThermoPhysicsTypes.hxx ├── solidification.hxx ├── solidificationI.hxx ├── solidificationMeltingSource.hxx ├── solidificationMeltingSourceTemplatesI.hxx ├── solidificationPhaseChange.hxx ├── solitary.hxx ├── solution.hxx ├── solutionControl.hxx ├── solutionControlI.hxx ├── solutionTemplatesI.hxx ├── solverPerformance.hxx ├── sootModel.hxx ├── sortLabelledTri.hxx ├── spatialTensor.hxx ├── spatialTransform.hxx ├── spatialTransformI.hxx ├── spatialVector.hxx ├── specie.hxx ├── specieCoeffs.hxx ├── specieElement.hxx ├── specieElementI.hxx ├── specieI.hxx ├── specieReactionRates.hxx ├── specieReactionRatesI.hxx ├── speciesTable.hxx ├── sphere.hxx ├── sphereI.hxx ├── sphereRandom.hxx ├── sphereToCell.hxx ├── sphericalAngularDamper.hxx ├── sphericalTensor.hxx ├── sphericalTensor2D.hxx ├── sphericalTensorField.hxx ├── sphericalTensorFieldField.hxx ├── sphericalTensorFieldFieldI.hxx ├── sphericalTensorFieldIOField.hxx ├── sphericalTensorIOField.hxx ├── sphericalTensorList.hxx ├── splineEdge.hxx ├── splineInterpolationWeights.hxx ├── splitCell.hxx ├── sprayCloud.hxx ├── springRenumber.hxx ├── standardPhaseChange.hxx ├── standardPhaseChangeI.hxx ├── standardRadiation.hxx ├── starcdSurfaceWriter.hxx ├── staticEngineMesh.hxx ├── staticFvMesh.hxx ├── steadyStateD2dt2Scheme.hxx ├── steadyStateD2dt2SchemeI.hxx ├── steadyStateDdtScheme.hxx ├── steadyStateDdtSchemeI.hxx ├── strainRateFunction.hxx ├── streamFunction.hxx ├── streamLine.hxx ├── streamLineParticle.hxx ├── streamLineParticleCloud.hxx ├── stringIOList.hxx ├── stringList.hxx ├── stringListOps.hxx ├── stringListOpsTemplatesI.hxx ├── stringOps.hxx ├── structuredDecomp.hxx ├── structuredRenumber.hxx ├── subBody.hxx ├── subBodyI.hxx ├── subCycle.hxx ├── subCycleTime.hxx ├── subModelBase.hxx ├── subModelBaseI.hxx ├── subtract.hxx ├── subtractTemplates.hxx ├── supersonicFreestreamFvPatchVectorField.hxx ├── surfFields.hxx ├── surfFieldsFwd.hxx ├── surfGeoMesh.hxx ├── surfMesh.hxx ├── surfPointFields.hxx ├── surfPointFieldsFwd.hxx ├── surfPointGeoMesh.hxx ├── surfZone.hxx ├── surfZoneIOList.hxx ├── surfZoneIdentifier.hxx ├── surfZoneIdentifierList.hxx ├── surfZoneList.hxx ├── surfaceCellSizeFunction.hxx ├── surfaceDisplacementPointPatchVectorField.hxx ├── surfaceFeatures.hxx ├── surfaceFieldValue.hxx ├── surfaceFieldValueI.hxx ├── surfaceFieldValueTemplates.hxx ├── surfaceFields.hxx ├── surfaceFieldsFwd.hxx ├── surfaceFilmModel.hxx ├── surfaceFilmRegionModel.hxx ├── surfaceFilmRegionModelI.hxx ├── surfaceFormatsCore.hxx ├── surfaceInterpolate.hxx ├── surfaceInterpolateFunObj.hxx ├── surfaceInterpolateFunObjTemplates.hxx ├── surfaceInterpolateI.hxx ├── surfaceInterpolation.hxx ├── surfaceInterpolationScheme.hxx ├── surfaceInterpolationSchemeI.hxx ├── surfaceIntersection.hxx ├── surfaceIntersectionI.hxx ├── surfaceLocation.hxx ├── surfaceMesh.hxx ├── surfaceMeshWriter.hxx ├── surfaceMeshWriterI.hxx ├── surfaceNormalFixedValueFvPatchVectorField.hxx ├── surfaceNormalUniformFixedValueFvPatchVectorField.hxx ├── surfaceOffsetLinearDistance.hxx ├── surfacePatch.hxx ├── surfacePatchIOList.hxx ├── surfacePatchList.hxx ├── surfaceRegistry.hxx ├── surfaceSets.hxx ├── surfaceSlipDisplacementFvPatchField.hxx ├── surfaceSlipDisplacementFvPatchFields.hxx ├── surfaceSlipDisplacementFvPatchFieldsFwd.hxx ├── surfaceSlipDisplacementPointPatchVectorField.hxx ├── surfaceTensionModel.hxx ├── surfaceToCell.hxx ├── surfaceToPoint.hxx ├── surfaceWriter.hxx ├── surfaceZonesInfo.hxx ├── sutherlandTransport.hxx ├── sutherlandTransportI.hxx ├── sutherlandTransport_Imp.hxx ├── sweepData.hxx ├── sweepDataI.hxx ├── sweptFaceAreaWeightAMI.hxx ├── swirlFlowRateInletVelocityFvPatchVectorField.hxx ├── swirlInletVelocityFvPatchVectorField.hxx ├── symGaussSeidelSmoother.hxx ├── symmTensor.hxx ├── symmTensor2D.hxx ├── symmTensorField.hxx ├── symmTensorFieldField.hxx ├── symmTensorFieldFieldI.hxx ├── symmTensorFieldIOField.hxx ├── symmTensorIOField.hxx ├── symmTensorList.hxx ├── symmTransform.hxx ├── symmTransformField.hxx ├── symmTransformFieldI.hxx ├── symmetryFvPatch.hxx ├── symmetryFvPatchField.hxx ├── symmetryFvPatchFieldI.hxx ├── symmetryFvPatchFields.hxx ├── symmetryFvPatchFieldsFwd.hxx ├── symmetryFvsPatchField.hxx ├── symmetryFvsPatchFieldI.hxx ├── symmetryFvsPatchFields.hxx ├── symmetryFvsPatchFieldsFwd.hxx ├── symmetryPlaneFvPatch.hxx ├── symmetryPlaneFvPatchField.hxx ├── symmetryPlaneFvPatchFieldI.hxx ├── symmetryPlaneFvPatchFields.hxx ├── symmetryPlaneFvPatchFieldsFwd.hxx ├── symmetryPlaneFvsPatchField.hxx ├── symmetryPlaneFvsPatchFieldI.hxx ├── symmetryPlaneFvsPatchFields.hxx ├── symmetryPlaneFvsPatchFieldsFwd.hxx ├── symmetryPlanePointPatch.hxx ├── symmetryPlanePointPatchField.hxx ├── symmetryPlanePointPatchFieldI.hxx ├── symmetryPlanePointPatchFields.hxx ├── symmetryPlanePolyPatch.hxx ├── symmetryPointPatch.hxx ├── symmetryPointPatchField.hxx ├── symmetryPointPatchFieldI.hxx ├── symmetryPointPatchFields.hxx ├── symmetryPolyPatch.hxx ├── symplectic.hxx ├── symplecticSixDoFSolver.hxx ├── syncTools.hxx ├── syncToolsI.hxx ├── syringePressureFvPatchScalarField.hxx ├── systemCall.hxx ├── tableReader.hxx ├── tableReaderI.hxx ├── tableReaders.hxx ├── tabulated6DoFAcceleration.hxx ├── tabulated6DoFMotion.hxx ├── tabulatedAccelerationSource.hxx ├── tabulatedAccelerationSourceTemplatesI.hxx ├── tabulatedHeatTransfer.hxx ├── targetCoeffTrim.hxx ├── targetVolumeToCell.hxx ├── temperatureAndPressure.lxx ├── temperatureAndPressureVariables.lxx ├── temperatureCoupledBase.hxx ├── temperatureDependentAlphaContactAngleFvPatchScalarField.hxx ├── temperatureDependentContactAngleForce.hxx ├── temperatureDependentSurfaceTension.hxx ├── temperatureEquilibration.lxx ├── tensor.hxx ├── tensor2D.hxx ├── tensorField.hxx ├── tensorFieldField.hxx ├── tensorFieldFieldI.hxx ├── tensorFieldIOField.hxx ├── tensorIOField.hxx ├── tensorList.hxx ├── tetCell.hxx ├── tetCellI.hxx ├── tetCellList.hxx ├── tetDecomposer.hxx ├── tetIndices.hxx ├── tetIndicesI.hxx ├── tetMatcher.hxx ├── tetOverlapVolume.hxx ├── tetPointRef.hxx ├── tetWedgeMatcher.hxx ├── tetherPotential.hxx ├── tetherPotentialList.hxx ├── tetherPotentialListI.hxx ├── tetrahedron.hxx ├── tetrahedronI.hxx ├── tetrahedron_Imp.hxx ├── thermalBaffle.hxx ├── thermalBaffle1DFvPatchScalarField.hxx ├── thermalBaffle1DFvPatchScalarFieldI.hxx ├── thermalBaffle1DFvPatchScalarFields.hxx ├── thermalBaffleFvPatchScalarField.hxx ├── thermalBaffleI.hxx ├── thermalBaffleModel.hxx ├── thermo.hxx ├── thermoCloud.hxx ├── thermoI.hxx ├── thermoParcelInjectionData.hxx ├── thermoParcelInjectionDataI.hxx ├── thermoParcelInjectionDataIOList.hxx ├── thermoPhysicsTypes.hxx ├── thermoSingleLayer.hxx ├── thermoSingleLayerI.hxx ├── thermo_Imp.hxx ├── thermocapillaryForce.hxx ├── thermodynamicConstants.hxx ├── thermophysicalFunction.hxx ├── thermophysicalProperties.hxx ├── thermophysicalPropertiesI.hxx ├── thermophysicalPropertiesSelector.hxx ├── thermophysicalPropertiesSelectorI.hxx ├── thermophysicalPropertiesSelector_Imp.hxx ├── thirdBodyArrheniusReactionRate.hxx ├── thirdBodyArrheniusReactionRateI.hxx ├── thirdBodyEfficiencies.hxx ├── thirdBodyEfficienciesI.hxx ├── thixotropicViscosity.hxx ├── threadedCollatedOFstream.hxx ├── thresholdCellFaces.hxx ├── timeActivatedFileUpdate.hxx ├── timeControl.hxx ├── timeControlFunctionObject.hxx ├── timeControlFunctionObjectI.hxx ├── timeControlI.hxx ├── timeFunctionObject.hxx ├── timeSelector.hxx ├── timeVaryingAlphaContactAngleFvPatchScalarField.hxx ├── timeVaryingMappedFixedValueFvPatchField.hxx ├── timeVaryingMappedFixedValueFvPatchFieldI.hxx ├── timeVaryingMappedFixedValueFvPatchFields.hxx ├── timeVaryingMappedFixedValueFvPatchFieldsFwd.hxx ├── timeVaryingMappedFixedValuePointPatchField.hxx ├── timeVaryingMappedFixedValuePointPatchFieldI.hxx ├── timeVaryingMappedFixedValuePointPatchFields.hxx ├── timeVaryingMappedFvPatchField.hxx ├── timeVaryingMappedFvPatchFieldI.hxx ├── timeVaryingUniformFixedValuePointPatchField.hxx ├── timeVaryingUniformFixedValuePointPatchFieldI.hxx ├── timeVaryingUniformFixedValuePointPatchFields.hxx ├── timer.hxx ├── tmp.hxx ├── tmpI.hxx ├── tmpNrc.hxx ├── tmpNrcI.hxx ├── tnbDebug.hxx ├── tnbString.hxx ├── tnbStringI.hxx ├── tnbVersion.hxx ├── token.hxx ├── tokenI.hxx ├── tokenList.hxx ├── token_Imp.hxx ├── tolerances.hxx ├── topoAction.hxx ├── topoCellLooper.hxx ├── topoDistanceData.hxx ├── topoDistanceDataI.hxx ├── topoSet.hxx ├── topoSetSource.hxx ├── totalFlowRateAdvectiveDiffusiveFvPatchScalarField.hxx ├── totalPressureFvPatchScalarField.hxx ├── totalTemperatureFvPatchScalarField.hxx ├── trackedParticle.hxx ├── transferModel.hxx ├── transferModelList.hxx ├── transform.hxx ├── transformField.hxx ├── transformFieldField.hxx ├── transformFieldFieldI.hxx ├── transformFieldI.hxx ├── transformFvPatchField.hxx ├── transformFvPatchFieldI.hxx ├── transformFvPatchFields.hxx ├── transformFvPatchFieldsFwd.hxx ├── transformGeometricField.hxx ├── transformGeometricFieldI.hxx ├── transformList.hxx ├── transformListI.hxx ├── translatingWallVelocityFvPatchVectorField.hxx ├── transportModel.hxx ├── treeBoundBox.hxx ├── treeBoundBoxI.hxx ├── treeBoundBoxList.hxx ├── treeBoundBoxTemplatesI.hxx ├── treeDataCell.hxx ├── treeDataEdge.hxx ├── treeDataFace.hxx ├── treeDataPoint.hxx ├── treeDataPrimitivePatch.hxx ├── treeDataPrimitivePatchI.hxx ├── treeDataTriSurface.hxx ├── triFace.hxx ├── triFaceI.hxx ├── triFaceList.hxx ├── triFaceTemplatesI.hxx ├── triPointRef.hxx ├── triSurface.hxx ├── triSurfaceFields.hxx ├── triSurfaceFieldsFwd.hxx ├── triSurfaceGeoMesh.hxx ├── triSurfaceMesh.hxx ├── triSurfaceMeshFeatures.hxx ├── triSurfaceMeshSampledSet.hxx ├── triSurfacePointGeoMesh.hxx ├── triSurfaceRegionSearch.hxx ├── triSurfaceSearch.hxx ├── triSurfaceTools.hxx ├── triad.hxx ├── triadField.hxx ├── triadI.hxx ├── triadIOField.hxx ├── triangle.hxx ├── triangleFuncs.hxx ├── triangleI.hxx ├── trimModel.hxx ├── turbGen.hxx ├── turbulenceFields.hxx ├── turbulenceFieldsTemplates.hxx ├── turbulenceIntensity.hxx ├── turbulenceModel.hxx ├── turbulentFluidThermoModel.hxx ├── turbulentFluidThermoModelI.hxx ├── turbulentFluidThermoModels.hxx ├── turbulentInletFvPatchField.hxx ├── turbulentInletFvPatchFieldI.hxx ├── turbulentInletFvPatchFields.hxx ├── turbulentInletFvPatchFieldsFwd.hxx ├── turbulentIntensityKineticEnergyInletFvPatchScalarField.hxx ├── turbulentMixingLengthDissipationRateInletFvPatchScalarField.hxx ├── turbulentMixingLengthFrequencyInletFvPatchScalarField.hxx ├── turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.hxx ├── turbulentTemperatureRadCoupledMixedFvPatchScalarField.hxx ├── turbulentTransportModel.hxx ├── turbulentTransportModelI.hxx ├── turbulentTransportModels.hxx ├── twoDPointCorrector.hxx ├── twoPhaseMixture.hxx ├── twoPhaseMixtureThermo.hxx ├── typeInfo.hxx ├── uLabel.hxx ├── uindirectPrimitivePatch.hxx ├── uint.hxx ├── uint32.hxx ├── uint64.hxx ├── uncollatedFileOperation.hxx ├── uncorrectedSnGrad.hxx ├── uncorrectedSnGradI.hxx ├── undefFieldFunctionsM.hxx ├── undoableMeshCutter.hxx ├── uniform.hxx ├── uniformDensityHydrostaticPressureFvPatchScalarField.hxx ├── uniformDiffusivity.hxx ├── uniformDimensionedFields.hxx ├── uniformDistance.hxx ├── uniformFixedGradientFvPatchField.hxx ├── uniformFixedGradientFvPatchFieldI.hxx ├── uniformFixedGradientFvPatchFields.hxx ├── uniformFixedGradientFvPatchFieldsFwd.hxx ├── uniformFixedValueFvPatchField.hxx ├── uniformFixedValueFvPatchFieldI.hxx ├── uniformFixedValueFvPatchFields.hxx ├── uniformFixedValueFvPatchFieldsFwd.hxx ├── uniformFixedValuePointPatchField.hxx ├── uniformFixedValuePointPatchFieldI.hxx ├── uniformFixedValuePointPatchFields.hxx ├── uniformGrid.hxx ├── uniformInletOutletFvPatchField.hxx ├── uniformInletOutletFvPatchFieldI.hxx ├── uniformInletOutletFvPatchFields.hxx ├── uniformInletOutletFvPatchFieldsFwd.hxx ├── uniformInterpolate.hxx ├── uniformInterpolateI.hxx ├── uniformInterpolatedDisplacementPointPatchVectorField.hxx ├── uniformInterpolationTable.hxx ├── uniformInterpolationTableI.hxx ├── uniformInterpolationTable_Imp.hxx ├── uniformJumpAMIFvPatchField.hxx ├── uniformJumpAMIFvPatchFieldI.hxx ├── uniformJumpAMIFvPatchFields.hxx ├── uniformJumpAMIFvPatchFieldsFwd.hxx ├── uniformJumpFvPatchField.hxx ├── uniformJumpFvPatchFieldI.hxx ├── uniformJumpFvPatchFields.hxx ├── uniformJumpFvPatchFieldsFwd.hxx ├── uniformTotalPressureFvPatchScalarField.hxx ├── uniformValue.hxx ├── unitConversion.hxx ├── universalConstants.hxx ├── unthreadedInitialise.hxx ├── unwatchedIOdictionary.hxx ├── updateRhoUf.lxx ├── updateUf.lxx ├── upwind.hxx ├── upwindCECCellToFaceStencilObject.hxx ├── upwindCFCCellToFaceStencilObject.hxx ├── upwindCPCCellToFaceStencilObject.hxx ├── upwindFECCellToFaceStencilObject.hxx ├── v2WallFunctionFvPatchScalarField.hxx ├── v2f.hxx ├── v2fBase.hxx ├── v2fI.hxx ├── valuePointPatchField.hxx ├── valuePointPatchFieldI.hxx ├── valuePointPatchFields.hxx ├── valveBank.hxx ├── vanAlbada.hxx ├── vanDriestDelta.hxx ├── vanLeer.hxx ├── variableHeatTransfer.hxx ├── variableHeightFlowRateFvPatchField.hxx ├── variableHeightFlowRateInletVelocityFvPatchVectorField.hxx ├── vector.hxx ├── vector2D.hxx ├── vector2DField.hxx ├── vector2DFieldFwd.hxx ├── vector2DFieldIOField.hxx ├── vector2DIOField.hxx ├── vectorField.hxx ├── vectorFieldIOField.hxx ├── vectorIOField.hxx ├── vectorIOList.hxx ├── vectorList.hxx ├── vectorListIOList.hxx ├── vectorTensorTransform.hxx ├── vectorTensorTransformI.hxx ├── vectorTensorTransformTemplatesI.hxx ├── vectorTools.hxx ├── velocityComponentLaplacianFvMotionSolver.hxx ├── velocityLaplacianFvMotionSolver.hxx ├── velocityMotionSolver.hxx ├── verticalDamping.hxx ├── veryInhomogeneousMixture.hxx ├── veryInhomogeneousMixtureI.hxx ├── viewFactor.hxx ├── viewFactorI.hxx ├── viscosityModel.hxx ├── viscosityModelBirdCarreau.hxx ├── viscosityModelCasson.hxx ├── viscosityModelCrossPowerLaw.hxx ├── viscosityModelHerschelBulkley.hxx ├── viscosityModelNewtonian.hxx ├── viscosityModelPowerLaw.hxx ├── viscosityModelStrainRateFunction.hxx ├── volContinuity.lxx ├── volFieldValue.hxx ├── volFieldValueTemplates.hxx ├── volFields.hxx ├── volFieldsFwd.hxx ├── volFieldsI.hxx ├── volMesh.hxx ├── volPointInterpolate_Imp.hxx ├── volPointInterpolation.hxx ├── volRegion.hxx ├── volRegionI.hxx ├── volumeFractionSource.hxx ├── volumeType.hxx ├── vorticity.hxx ├── vtkMesh.hxx ├── vtkSetWriter.hxx ├── vtkSetWriterI.hxx ├── vtkSurfaceWriter.hxx ├── vtkTopo.hxx ├── vtkUnstructuredReader.hxx ├── vtkUnstructuredReaderI.hxx ├── walkPatch.hxx ├── wallDist.hxx ├── wallDistData.hxx ├── wallDistDataI.hxx ├── wallFvPatch.hxx ├── wallHeatFlux.hxx ├── wallHeatTransferCoeff.hxx ├── wallHeatTransferFvPatchScalarField.hxx ├── wallLayerCells.hxx ├── wallNormalInfo.hxx ├── wallNormalInfoI.hxx ├── wallPoint.hxx ├── wallPointData.hxx ├── wallPointDataI.hxx ├── wallPointData_Imp.hxx ├── wallPointI.hxx ├── wallPointPatch.hxx ├── wallPointYPlus.hxx ├── wallPointYPlusI.hxx ├── wallPolyPatch.hxx ├── wallShearStress.hxx ├── waveAlphaFvPatchScalarField.hxx ├── waveAtmBoundaryLayerSuperposition.hxx ├── waveDisplacementPointPatchVectorField.hxx ├── waveInletOutletFvPatchField.hxx ├── waveInletOutletFvPatchFieldI.hxx ├── waveInletOutletFvPatchFields.hxx ├── waveInletOutletFvPatchFieldsFwd.hxx ├── waveModel.hxx ├── wavePressureFvPatchScalarField.hxx ├── waveSuperposition.hxx ├── waveSurfacePressureFvPatchScalarField.hxx ├── waveTransmissiveFvPatchField.hxx ├── waveTransmissiveFvPatchFieldI.hxx ├── waveTransmissiveFvPatchFields.hxx ├── waveTransmissiveFvPatchFieldsFwd.hxx ├── waveVelocityFvPatchVectorField.hxx ├── waxSolventEvaporation.hxx ├── waxSolventEvaporationI.hxx ├── waxSolventViscosity.hxx ├── wchar.hxx ├── wedge.hxx ├── wedgeFvPatch.hxx ├── wedgeFvPatchField.hxx ├── wedgeFvPatchFieldI.hxx ├── wedgeFvPatchFields.hxx ├── wedgeFvPatchFieldsFwd.hxx ├── wedgeFvsPatchField.hxx ├── wedgeFvsPatchFieldI.hxx ├── wedgeFvsPatchFields.hxx ├── wedgeFvsPatchFieldsFwd.hxx ├── wedgeMatcher.hxx ├── wedgePointPatch.hxx ├── wedgePointPatchField.hxx ├── wedgePointPatchFieldI.hxx ├── wedgePointPatchFields.hxx ├── wedgePolyPatch.hxx ├── weighted.hxx ├── weightedFvPatchFieldMapper.hxx ├── wideBand.hxx ├── wideBandCombustion.hxx ├── wideBandDiffusiveRadiationMixedFvPatchScalarField.hxx ├── word.hxx ├── wordI.hxx ├── wordIOList.hxx ├── wordList.hxx ├── wordRe.hxx ├── wordReI.hxx ├── wordReList.hxx ├── wordReListMatcher.hxx ├── wordReListMatcherI.hxx ├── writeCellCentres.hxx ├── writeCellGraph.hxx ├── writeCellVolumes.hxx ├── writeDictionary.hxx ├── writeFaceSet.hxx ├── writeFile.hxx ├── writeFileI.hxx ├── writeFuns.hxx ├── writeFunsI.hxx ├── writeLocalObjects.hxx ├── writeObjects.hxx ├── writeObjectsBase.hxx ├── writePatchGraph.hxx ├── writePointSet.hxx ├── writeSurfFields.hxx ├── writeVTK.hxx ├── writeVTKI.hxx ├── writer.hxx ├── writerI.hxx ├── writers.hxx ├── xmgrGraph.hxx ├── xmgraceSetWriter.hxx ├── xmgraceSetWriterI.hxx ├── yPlus.hxx ├── zero.hxx ├── zeroField.hxx ├── zeroFieldField.hxx ├── zeroFieldFieldI.hxx ├── zeroFieldI.hxx ├── zeroFixedValuePointPatchField.hxx ├── zeroFixedValuePointPatchFieldI.hxx ├── zeroFixedValuePointPatchFields.hxx ├── zeroGradientFvPatchField.hxx ├── zeroGradientFvPatchFieldI.hxx ├── zeroGradientFvPatchFields.hxx ├── zeroGradientFvPatchFieldsFwd.hxx ├── zeroGradientPointPatchField.hxx ├── zeroGradientPointPatchFieldI.hxx ├── zeroGradientPointPatchFields.hxx ├── zeroI.hxx ├── zoltanRenumber.hxx ├── zone.hxx ├── zoneCombustion.hxx ├── zoneCombustionI.hxx ├── zoneToCell.hxx ├── zoneToFace.hxx └── zoneToPoint.hxx └── tutorials ├── Allclean ├── Allrun ├── Alltest ├── DNS └── dnsFoam │ └── boxTurb16 │ ├── 0 │ ├── U.orig │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── boxTurbDict │ ├── transportProperties │ └── turbulenceProperties │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution ├── IO └── fileHandler │ ├── 0 │ └── U │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── g │ ├── kinematicCloudPositions │ ├── kinematicCloudProperties │ ├── transportProperties │ └── turbulenceProperties │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution ├── basic ├── laplacianFoam │ └── flange │ │ ├── 0 │ │ └── T │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ └── transportProperties │ │ ├── flange.ans │ │ └── system │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── potentialFoam │ ├── cylinder │ │ ├── 0 │ │ │ ├── U.orig │ │ │ └── p.orig │ │ ├── Allclean │ │ ├── Allrun │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── pitzDaily │ │ ├── 0 │ │ ├── U.orig │ │ └── p.orig │ │ ├── Allclean │ │ ├── Allrun │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution └── scalarTransportFoam │ └── pitzDaily │ ├── 0 │ ├── T │ └── U │ ├── constant │ └── transportProperties │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution ├── combustion ├── PDRFoam │ └── flamePropagationWithObstacles │ │ ├── 0 │ │ ├── Aw.orig │ │ ├── B.orig │ │ ├── CR.orig │ │ ├── CT.orig │ │ ├── Lobs.orig │ │ ├── Nv.orig │ │ ├── Su.orig │ │ ├── T.orig │ │ ├── Tu.orig │ │ ├── U.orig │ │ ├── Xi.orig │ │ ├── alphat.orig │ │ ├── b(1).orig │ │ ├── betav.orig │ │ ├── epsilon.orig │ │ ├── ft.orig │ │ ├── k.orig │ │ ├── nsv.orig │ │ ├── nut.orig │ │ └── p.orig │ │ ├── Allclean │ │ ├── Allrun │ │ ├── README │ │ ├── constant │ │ ├── PDRProperties │ │ ├── combustionProperties │ │ ├── dynamicMeshDict │ │ ├── g │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ │ ├── fuels │ │ └── propane.dat │ │ └── system │ │ ├── PDRMeshDict │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── topoSetDict ├── XiEngineFoam │ └── kivaTest │ │ ├── -180 │ │ ├── Su │ │ ├── T │ │ ├── Tu │ │ ├── U │ │ ├── Xi │ │ ├── alphat │ │ ├── b │ │ ├── epsilon │ │ ├── ft │ │ ├── fu │ │ ├── k │ │ ├── nut │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── combustionProperties │ │ ├── engineGeometry │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ │ ├── otape17 │ │ └── system │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── XiFoam │ └── RAS │ │ ├── Allclean │ │ ├── Allrun │ │ └── moriyoshiHomogeneous │ │ ├── 0 │ │ ├── Su │ │ ├── T │ │ ├── Tu │ │ ├── U │ │ ├── Xi │ │ ├── alphat │ │ ├── b │ │ ├── epsilon │ │ ├── ft │ │ ├── fu │ │ ├── k │ │ ├── nut │ │ └── p │ │ ├── constant │ │ ├── combustionProperties │ │ ├── thermophysicalProperties │ │ ├── thermophysicalProperties.hydrogen │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── chemFoam │ ├── README │ ├── gri │ │ ├── Allclean │ │ ├── Allrun │ │ ├── chemkin │ │ │ ├── chem.inp │ │ │ ├── senk.inp │ │ │ ├── senk.out │ │ │ ├── therm.dat │ │ │ └── transportProperties │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── initialConditions │ │ │ └── thermophysicalProperties │ │ ├── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── validation │ │ │ ├── Allrun │ │ │ └── createGraph │ ├── h2 │ │ ├── Allclean │ │ ├── Allrun │ │ ├── chemkin │ │ │ ├── chem.inp │ │ │ ├── senk.inp │ │ │ ├── senk.out │ │ │ ├── therm.dat │ │ │ └── transportProperties │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── initialConditions │ │ │ └── thermophysicalProperties │ │ ├── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── validation │ │ │ ├── Allrun │ │ │ └── createGraph │ ├── ic8h18 │ │ ├── Allclean │ │ ├── Allrun │ │ ├── chemkin │ │ │ ├── chem.inp │ │ │ ├── senk.inp │ │ │ ├── senk.out │ │ │ ├── therm.dat │ │ │ └── transportProperties │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── initialConditions │ │ │ └── thermophysicalProperties │ │ ├── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── validation │ │ │ ├── Allrun │ │ │ └── createGraph │ ├── ic8h18_TDAC │ │ ├── Allclean │ │ ├── Allrun │ │ ├── chemkin │ │ │ ├── chem.inp │ │ │ ├── senk.inp │ │ │ ├── senk.out │ │ │ ├── therm.dat │ │ │ └── transportProperties │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── initialConditions │ │ │ └── thermophysicalProperties │ │ ├── system │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── validation │ │ │ ├── Allrun │ │ │ └── createGraph │ └── nc7h16 │ │ ├── Allclean │ │ ├── Allrun │ │ ├── chemkin │ │ ├── chem.inp │ │ ├── senk.inp │ │ ├── senk.out │ │ ├── therm.dat │ │ └── transportProperties │ │ ├── constant │ │ ├── chemistryProperties │ │ ├── initialConditions │ │ └── thermophysicalProperties │ │ ├── system │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ │ └── validation │ │ ├── Allrun │ │ └── createGraph ├── coldEngineFoam │ └── freePiston │ │ ├── 0 │ │ ├── T │ │ ├── U │ │ ├── air │ │ ├── alphat │ │ ├── epsilon │ │ ├── include │ │ │ ├── boundaryConditions │ │ │ └── caseSettings │ │ ├── k │ │ ├── nut │ │ └── p │ │ ├── constant │ │ ├── engineGeometry │ │ ├── g │ │ ├── include │ │ │ ├── reactions.air │ │ │ └── thermo.air │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── fireFoam │ └── LES │ │ ├── flameSpreadWaterSuppressionPanel │ │ ├── 0 │ │ │ ├── C3H8 │ │ │ ├── IDefault │ │ │ ├── N2 │ │ │ ├── O2 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── Ydefault │ │ │ ├── alphat │ │ │ ├── filmRegion │ │ │ │ ├── Tf │ │ │ │ ├── Uf │ │ │ │ └── deltaf │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ ├── ph_rgh.orig │ │ │ └── pyrolysisRegion │ │ │ │ ├── T │ │ │ │ ├── Y0Default │ │ │ │ ├── char │ │ │ │ ├── p │ │ │ │ ├── qr │ │ │ │ └── wood │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── additionalControls │ │ │ ├── combustionProperties │ │ │ ├── g │ │ │ ├── pRef │ │ │ ├── pyrolysisRegion │ │ │ │ ├── chemistryProperties │ │ │ │ ├── radiationProperties │ │ │ │ ├── reactions │ │ │ │ ├── thermo.solid │ │ │ │ └── thermophysicalProperties │ │ │ ├── pyrolysisZones │ │ │ ├── radiationProperties │ │ │ ├── reactingCloud1Positions │ │ │ ├── reactingCloud1Properties │ │ │ ├── reactions │ │ │ ├── surfaceFilmProperties │ │ │ ├── thermo.compressibleGas │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── createPatchDict │ │ │ ├── extrudeToRegionMeshDictFilm │ │ │ ├── extrudeToRegionMeshDictPyr │ │ │ ├── filmRegion │ │ │ ├── createPatchDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── topoSetDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── pyrolysisRegion │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ └── topoSetDict │ │ ├── oppositeBurningPanels │ │ ├── 0 │ │ │ ├── C3H8 │ │ │ ├── G │ │ │ ├── IDefault │ │ │ ├── N2 │ │ │ ├── O2 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── Ydefault │ │ │ ├── alphat │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ ├── panelRegion │ │ │ │ ├── T │ │ │ │ ├── Y0Default │ │ │ │ ├── char │ │ │ │ ├── p │ │ │ │ ├── qr │ │ │ │ └── wood │ │ │ └── ph_rgh.orig │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── additionalControls │ │ │ ├── combustionProperties │ │ │ ├── g │ │ │ ├── hRef │ │ │ ├── pRef │ │ │ ├── panelRegion │ │ │ │ ├── chemistryProperties │ │ │ │ ├── radiationProperties │ │ │ │ ├── reactions │ │ │ │ ├── thermo.solid │ │ │ │ └── thermophysicalProperties │ │ │ ├── pyrolysisZones │ │ │ ├── radiationProperties │ │ │ ├── reactingCloud1Properties │ │ │ ├── reactions │ │ │ ├── surfaceFilmProperties │ │ │ ├── thermo.compressibleGas │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── cRefine.topoSetDict │ │ │ ├── controlDict │ │ │ ├── createPatchDict │ │ │ ├── decomposeParDict │ │ │ ├── extrudeToRegionMeshDict │ │ │ ├── f.topoSetDict │ │ │ ├── fBurner.topoSetDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── panelRegion │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ └── refineMeshDict │ │ ├── smallPoolFire2D │ │ ├── 0 │ │ │ ├── CH4 │ │ │ ├── FSDomega │ │ │ ├── G │ │ │ ├── IDefault │ │ │ ├── N2 │ │ │ ├── O2 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── Ydefault │ │ │ ├── alphat │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ ├── ph_rgh.orig │ │ │ └── soot │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── additionalControls │ │ │ ├── combustionProperties │ │ │ ├── g │ │ │ ├── hRef │ │ │ ├── pRef │ │ │ ├── pyrolysisZones │ │ │ ├── radiationProperties │ │ │ ├── reactingCloud1Properties │ │ │ ├── reactions │ │ │ ├── surfaceFilmProperties │ │ │ ├── thermo.compressibleGas │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── createPatchDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── topoSetDict │ │ └── smallPoolFire3D │ │ ├── 0 │ │ ├── CH4 │ │ ├── G │ │ ├── IDefault │ │ ├── N2 │ │ ├── O2 │ │ ├── T │ │ ├── U │ │ ├── Ydefault │ │ ├── alphat │ │ ├── k │ │ ├── nut │ │ ├── p │ │ ├── p_rgh │ │ └── ph_rgh.orig │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── additionalControls │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── g │ │ ├── hRef │ │ ├── pRef │ │ ├── pyrolysisZones │ │ ├── radiationProperties │ │ ├── reactingCloud1Properties │ │ ├── reactions │ │ ├── surfaceFilmProperties │ │ ├── thermo.compressibleGas │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── createPatchDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── topoSetDict └── reactingFoam │ ├── RAS │ ├── DLR_A_LTS │ │ ├── 0 │ │ │ ├── CH4 │ │ │ ├── G │ │ │ ├── H2 │ │ │ ├── H2O │ │ │ ├── N2 │ │ │ ├── O2 │ │ │ ├── T.orig │ │ │ ├── U │ │ │ ├── Ydefault │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── chemkin │ │ │ ├── grimech30.dat │ │ │ ├── thermo30.dat │ │ │ └── transportProperties │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── combustionProperties │ │ │ ├── g │ │ │ ├── reactionsGRI │ │ │ ├── thermo.compressibleGasGRI │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── SandiaD_LTS │ │ ├── 0 │ │ │ ├── CH4.orig │ │ │ ├── CO │ │ │ ├── CO2 │ │ │ ├── G │ │ │ ├── H │ │ │ ├── H2 │ │ │ ├── H2O │ │ │ ├── N2.orig │ │ │ ├── O │ │ │ ├── O2.orig │ │ │ ├── OH │ │ │ ├── T.orig │ │ │ ├── U │ │ │ ├── Ydefault │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p │ │ ├── Allrun │ │ ├── chemkin │ │ │ ├── grimech30.dat │ │ │ ├── thermo30.dat │ │ │ └── transportProperties │ │ ├── constant │ │ │ ├── chemistryProperties.orig │ │ │ ├── combustionProperties │ │ │ ├── fvOptions │ │ │ ├── g │ │ │ ├── radiationProperties │ │ │ ├── reactionsGRI │ │ │ ├── thermo.compressibleGasGRI │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ └── membrane │ │ ├── 0 │ │ ├── CH4.orig │ │ ├── N2.orig │ │ ├── O2.orig │ │ ├── T │ │ ├── U │ │ ├── Ydefault │ │ ├── alphat │ │ ├── epsilon │ │ ├── include │ │ ├── k │ │ ├── nut │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── combustionProperties │ │ ├── reactions │ │ ├── thermo.compressibleGas │ │ ├── thermophysicalProperties │ │ ├── triSurface │ │ │ └── README │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── createBafflesDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── meshQualityDict │ │ ├── setFieldsDict │ │ └── snappyHexMeshDict │ └── laminar │ ├── counterFlowFlame2D │ ├── 0 │ │ ├── CH4 │ │ ├── CO2 │ │ ├── H2O │ │ ├── N2 │ │ ├── O2 │ │ ├── T │ │ ├── U │ │ ├── Ydefault │ │ ├── alphat │ │ └── p │ ├── constant │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── reactions │ │ ├── thermo.compressibleGas │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── counterFlowFlame2DLTS │ ├── 0 │ │ ├── CH4 │ │ ├── CO2 │ │ ├── H2O │ │ ├── N2 │ │ ├── O2 │ │ ├── T │ │ ├── U │ │ ├── Ydefault │ │ ├── alphat │ │ └── p │ ├── constant │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── reactions │ │ ├── thermo.compressibleGas │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── counterFlowFlame2DLTS_GRI_TDAC │ ├── 0 │ │ ├── CH4 │ │ ├── CO2 │ │ ├── H2O │ │ ├── N2 │ │ ├── O2 │ │ ├── T │ │ ├── U │ │ ├── Ydefault │ │ ├── alphat │ │ └── p │ ├── constant │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── reactionsGRI │ │ ├── thermo.compressibleGasGRI │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── counterFlowFlame2D_GRI │ ├── 0 │ │ ├── CH4 │ │ ├── CO2 │ │ ├── H2O │ │ ├── N2 │ │ ├── O2 │ │ ├── T │ │ ├── U │ │ ├── Ydefault │ │ ├── alphat │ │ └── p │ ├── constant │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── reactionsGRI │ │ ├── thermo.compressibleGasGRI │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ └── counterFlowFlame2D_GRI_TDAC │ ├── 0 │ ├── CH4 │ ├── CO2 │ ├── H2O │ ├── N2 │ ├── O2 │ ├── T │ ├── U │ ├── Ydefault │ ├── alphat │ └── p │ ├── constant │ ├── chemistryProperties │ ├── combustionProperties │ ├── reactionsGRI │ ├── thermo.compressibleGasGRI │ ├── thermophysicalProperties │ └── turbulenceProperties │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution ├── compressible ├── rhoCentralFoam │ ├── LadenburgJet60psi │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ └── p │ │ ├── 0.orig │ │ │ ├── T │ │ │ ├── U │ │ │ └── p │ │ ├── README │ │ ├── constant │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── mapFieldsDict │ ├── biconic25-55Run35 │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── README │ │ ├── constant │ │ │ ├── grid256.dat │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ ├── sampleCone │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── collapseDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sample │ ├── forwardStep │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ └── p │ │ ├── constant │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── movingCone │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── p │ │ │ └── pointMotionUx │ │ ├── constant │ │ │ ├── dynamicMeshDict │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── cuttingPlane │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── obliqueShock │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ └── p │ │ ├── constant │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── shockTube │ │ ├── 0 │ │ │ ├── T.orig │ │ │ ├── U.orig │ │ │ └── p.orig │ │ ├── Allrun │ │ ├── constant │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── sample │ │ │ └── setFieldsDict │ └── wedge15Ma5 │ │ ├── 0 │ │ ├── T │ │ ├── U │ │ └── p │ │ ├── constant │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── rhoPimpleFoam │ ├── LES │ │ └── pitzDaily │ │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── k │ │ │ ├── muTilda │ │ │ ├── nut │ │ │ └── p │ │ │ ├── constant │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── RAS │ │ ├── aerofoilNACA0012 │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── omega │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── extrudeMeshDict │ │ │ │ ├── fvOptions │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── residuals │ │ ├── angledDuct │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── fvOptions │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict.m4 │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── angledDuctLTS │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── fvOptions │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict.m4 │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── annularThermalMixer │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── boundaryConditions │ │ │ │ ├── caseSettings │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── thermophysicalProperties │ │ │ │ ├── transportProperties │ │ │ │ ├── triSurface │ │ │ │ │ ├── AMI.eMesh │ │ │ │ │ ├── rotorBlades.eMesh │ │ │ │ │ ├── shaft.eMesh │ │ │ │ │ ├── statorBlades.eMesh │ │ │ │ │ └── wall.eMesh │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── createBafflesDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── snappyHexMeshDict │ │ │ │ └── surfaceFeaturesDict │ │ ├── cavity │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── omega │ │ │ │ └── p │ │ │ ├── constant │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── mixerVessel2D │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── MRFProperties │ │ │ │ ├── fvOptions │ │ │ │ ├── thermophysicalProperties │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── makeMesh │ │ │ └── system │ │ │ │ ├── blockMeshDict.m4 │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── nacaAirfoil │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── Running_Notes │ │ │ ├── constant │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── prostar │ │ │ │ ├── nacaAirfoil.bnd.gz │ │ │ │ ├── nacaAirfoil.cel.gz │ │ │ │ └── nacaAirfoil.vrt.gz │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── prism │ │ │ ├── 0 │ │ │ │ ├── T │ │ │ │ ├── U │ │ │ │ ├── alphat │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── constant │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── squareBendLiq │ │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p │ │ │ ├── constant │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── laminar │ │ ├── blockedChannel │ │ ├── 0 │ │ │ ├── T │ │ │ ├── T.solid │ │ │ ├── U │ │ │ ├── p │ │ │ └── tracer │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── thermophysicalProperties │ │ │ ├── thermophysicalProperties.solid │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvOptions │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── generateAlphaSolid │ │ │ └── scalarTransport │ │ ├── decompressionTank │ │ ├── Allclean │ │ ├── Allrun │ │ └── decompressionTank │ │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ └── p │ │ │ ├── constant │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── forwardStep │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ └── p │ │ ├── constant │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── helmholtzResonance │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── blockMeshDict.modelledBlocks │ │ │ ├── blockMeshDict.modelledBoundary │ │ │ ├── blockMeshDict.resolvedBlocks │ │ │ ├── blockMeshDict.resolvedBoundary │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── shockTube │ │ ├── 0 │ │ ├── T.orig │ │ ├── U.orig │ │ └── p.orig │ │ ├── Allrun │ │ ├── constant │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── sample │ │ └── setFieldsDict ├── rhoPorousSimpleFoam │ ├── angledDuctExplicit │ │ ├── Allrun │ │ └── system │ │ │ ├── blockMeshDict.m4 │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── angledDuctImplicit │ │ ├── 0 │ │ ├── T │ │ ├── U │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p │ │ ├── Allrun │ │ ├── constant │ │ ├── fvOptions │ │ ├── porosityProperties │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict.m4 │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution └── rhoSimpleFoam │ ├── aerofoilNACA0012 │ ├── 0 │ │ ├── T │ │ ├── U │ │ ├── alphat │ │ ├── k │ │ ├── nut │ │ ├── omega │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── extrudeMeshDict │ │ ├── fvOptions │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── residuals │ ├── angledDuctExplicitFixedCoeff │ ├── 0 │ │ ├── T │ │ ├── U │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p │ ├── Allrun │ ├── constant │ │ ├── fvOptions │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict.m4 │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── squareBend │ ├── 0 │ │ ├── T │ │ ├── U │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p │ ├── constant │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ └── squareBendLiq │ ├── 0 │ ├── T │ ├── U │ ├── alphat │ ├── epsilon │ ├── k │ ├── nut │ └── p │ ├── constant │ ├── thermophysicalProperties │ └── turbulenceProperties │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution ├── discreteMethods ├── dsmcFoam │ ├── README │ ├── freeSpacePeriodic │ │ ├── 0 │ │ │ ├── boundaryT │ │ │ ├── boundaryU │ │ │ ├── dsmcRhoN │ │ │ ├── fD │ │ │ ├── iDof │ │ │ ├── internalE │ │ │ ├── linearKE │ │ │ ├── momentum │ │ │ ├── q │ │ │ ├── rhoM │ │ │ └── rhoN │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ └── dsmcProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── dsmcInitialiseDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── freeSpaceStream │ │ ├── 0 │ │ │ ├── boundaryT │ │ │ ├── boundaryU │ │ │ ├── dsmcRhoN │ │ │ ├── fD │ │ │ ├── iDof │ │ │ ├── internalE │ │ │ ├── linearKE │ │ │ ├── momentum │ │ │ ├── q │ │ │ ├── rhoM │ │ │ └── rhoN │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ └── dsmcProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── dsmcInitialiseDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── supersonicCorner │ │ ├── 0 │ │ │ ├── boundaryT │ │ │ ├── boundaryU │ │ │ ├── dsmcRhoN │ │ │ ├── fD │ │ │ ├── iDof │ │ │ ├── internalE │ │ │ ├── linearKE │ │ │ ├── momentum │ │ │ ├── q │ │ │ ├── rhoM │ │ │ └── rhoN │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ └── dsmcProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── dsmcInitialiseDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── wedge15Ma5 │ │ ├── 0 │ │ ├── boundaryT │ │ ├── boundaryU │ │ ├── dsmcRhoN │ │ ├── fD │ │ ├── iDof │ │ ├── internalE │ │ ├── linearKE │ │ ├── momentum │ │ ├── q │ │ ├── rhoM │ │ └── rhoN │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ └── dsmcProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── dsmcInitialiseDict │ │ ├── fvSchemes │ │ └── fvSolution └── molecularDynamics │ ├── mdEquilibrationFoam │ ├── periodicCubeArgon │ │ ├── 0 │ │ │ └── U │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ └── moleculeProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── mdEquilibrationDict │ │ │ ├── mdInitialiseDict │ │ │ └── potentialDict │ └── periodicCubeWater │ │ ├── 0 │ │ └── U │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ └── moleculeProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── mdEquilibrationDict │ │ ├── mdInitialiseDict │ │ └── potentialDict │ └── mdFoam │ └── nanoNozzle │ ├── 0 │ └── U │ ├── Allclean │ ├── Allrun │ ├── constant │ └── moleculeProperties │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ ├── mdEquilibrationDict │ ├── mdInitialiseDict │ └── potentialDict ├── electromagnetics ├── electrostaticFoam │ └── chargedWire │ │ ├── 0 │ │ ├── phi │ │ └── rho │ │ ├── constant │ │ └── physicalProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution └── mhdFoam │ └── hartmann │ ├── 0 │ ├── B │ ├── U │ ├── Ux │ ├── Uy │ ├── Uz │ ├── p │ └── pB │ ├── Allclean │ ├── Allrun │ ├── constant │ └── transportProperties │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ ├── fvSolution │ └── sample ├── financial └── financialFoam │ └── europeanCall │ ├── 0 │ └── V │ ├── constant │ └── financialProperties │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution ├── heatTransfer ├── buoyantPimpleFoam │ ├── BernardCells │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── constant │ │ │ ├── g │ │ │ ├── thermophysicalProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── residuals │ │ │ └── streamlines │ ├── hotRoom │ │ ├── 0 │ │ │ ├── T.orig │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ └── hotRoomBoussinesq │ │ ├── 0 │ │ ├── T.orig │ │ ├── U │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ ├── p │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ ├── g │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── buoyantSimpleFoam │ ├── buoyantCavity │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── README │ │ ├── constant │ │ │ ├── g │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── sample │ │ └── validation │ │ │ ├── createGraphs │ │ │ └── exptData │ │ │ ├── mt_z0_10_lo.dat │ │ │ ├── mt_z0_30_lo.dat │ │ │ ├── mt_z0_40_lo.dat │ │ │ ├── mt_z0_50_lo.dat │ │ │ ├── mt_z0_60_lo.dat │ │ │ ├── mt_z0_70_lo.dat │ │ │ ├── mt_z0_90_lo.dat │ │ │ ├── mv_z0_10_lo.dat │ │ │ ├── mv_z0_30_lo.dat │ │ │ ├── mv_z0_40_lo.dat │ │ │ ├── mv_z0_50_lo.dat │ │ │ ├── mv_z0_60_lo.dat │ │ │ ├── mv_z0_70_lo.dat │ │ │ └── mv_z0_90_lo.dat │ ├── circuitBoardCooling │ │ ├── 0.orig │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── baffle3DRegion │ │ │ │ ├── Q │ │ │ │ ├── T │ │ │ │ └── p │ │ │ ├── epsilon │ │ │ ├── include │ │ │ │ ├── 1DBaffle │ │ │ │ │ ├── 1DTemperatureMasterBafflePatches │ │ │ │ │ └── 1DbaffleSolidThermo │ │ │ │ ├── 3DBaffle │ │ │ │ │ ├── 3DTemperatureMasterBafflePatches │ │ │ │ │ ├── 3DbaffleSolidThermo │ │ │ │ │ └── extrudeModel │ │ │ │ ├── baffle3DSetup │ │ │ │ └── wallBafflePatches │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── thermophysicalProperties │ │ │ ├── triSurface │ │ │ │ ├── baffle1D.stl │ │ │ │ └── baffle3D.stl │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── baffle3DRegion │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── createBafflesDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── externalCoupledCavity │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allmesh │ │ ├── Allrun │ │ ├── Allrun-parallel │ │ ├── README │ │ ├── constant │ │ │ ├── g │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ ├── externalSolver │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── hotRadiationRoom │ │ ├── 0 │ │ │ ├── G │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── radiationProperties │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── hotRadiationRoomFvDOM │ │ ├── 0 │ │ │ ├── G │ │ │ ├── IDefault │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── radiationProperties │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── hotRoomBoussinesq │ │ ├── 0 │ │ │ ├── T.orig │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ └── iglooWithFridges │ │ ├── 0 │ │ ├── T │ │ ├── U │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ ├── p │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ ├── g │ │ ├── thermophysicalProperties │ │ ├── triSurface │ │ │ └── fridgeA.eMesh │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── meshQualityDict │ │ └── snappyHexMeshDict └── chtMultiRegionFoam │ ├── coolingSphere │ ├── Allclean │ ├── Allmesh │ ├── Allrun │ ├── constant │ │ ├── initialConditions │ │ ├── materialProperties │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── topoSetDict │ └── templates │ │ ├── 0 │ │ ├── fluid │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ └── p_rgh │ │ └── solid │ │ │ ├── T │ │ │ └── p │ │ ├── constant │ │ └── fluid │ │ │ └── g │ │ ├── materials │ │ ├── air │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ ├── aluminium │ │ │ └── thermophysicalProperties │ │ ├── copper │ │ │ └── thermophysicalProperties │ │ └── water │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ ├── fluid │ │ ├── fvSchemes │ │ └── fvSolution │ │ └── solid │ │ ├── fvOptions │ │ ├── fvSchemes │ │ └── fvSolution │ ├── heatExchanger │ ├── 0 │ │ ├── air │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ └── p_rgh │ │ └── porous │ │ │ ├── AoV │ │ │ ├── T │ │ │ ├── U │ │ │ ├── htcConst │ │ │ ├── p │ │ │ └── p_rgh │ ├── Allclean │ ├── Allmesh │ ├── Allrun │ ├── Allrun-parallel │ ├── constant │ │ ├── air │ │ │ ├── MRFProperties │ │ │ ├── fvOptions │ │ │ ├── g │ │ │ ├── radiationProperties │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ ├── porous │ │ │ ├── fvOptions │ │ │ ├── g │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── regionProperties │ └── system │ │ ├── air │ │ ├── blockMeshDict │ │ ├── createBafflesDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── topoSetDict.1 │ │ └── topoSetDict.2 │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── porous │ │ ├── blockMeshDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── heatedDuct │ ├── 0 │ │ ├── fluid │ │ │ ├── T │ │ │ ├── U │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── heater │ │ │ ├── T │ │ │ └── p │ │ └── metal │ │ │ ├── T │ │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── fluid │ │ │ ├── g │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ ├── heater │ │ │ ├── fvOptions │ │ │ └── thermophysicalProperties │ │ ├── metal │ │ │ └── thermophysicalProperties │ │ ├── regionProperties │ │ └── triSurface │ │ │ ├── fluidToMetal.stl │ │ │ ├── heatedDuct.stl │ │ │ └── metalToHeater.stl │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fluid │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── heater │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ │ ├── meshQualityDict │ │ ├── metal │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ │ └── snappyHexMeshDict │ ├── reverseBurner │ ├── 0 │ │ ├── gas │ │ │ ├── CH4 │ │ │ ├── G │ │ │ ├── N2 │ │ │ ├── O2 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── Ydefault │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ └── p_rgh │ │ └── solid │ │ │ ├── T │ │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── gas │ │ │ ├── chemistryProperties │ │ │ ├── combustionProperties │ │ │ ├── fvOptions │ │ │ ├── g │ │ │ ├── radiationProperties │ │ │ ├── reactions │ │ │ ├── thermo.compressibleGas │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ ├── regionProperties │ │ └── solid │ │ │ ├── radiationProperties │ │ │ └── thermophysicalProperties │ └── system │ │ ├── Qdot │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── gas │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── setFieldsDict │ │ └── topoSetDict │ │ └── solid │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ └── shellAndTubeHeatExchanger │ ├── 0 │ ├── shell │ │ ├── T │ │ ├── U │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ ├── p │ │ └── p_rgh │ ├── solid │ │ ├── T │ │ └── p │ └── tube │ │ ├── T │ │ ├── U │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ ├── p │ │ └── p_rgh │ ├── Allclean │ ├── Allmesh.layers │ ├── Allmesh.noLayers │ ├── Allrun │ ├── constant │ ├── regionProperties │ ├── shell │ │ ├── g │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ ├── solid │ │ └── thermophysicalProperties │ ├── triSurface │ │ ├── shell.stl.gz │ │ ├── shell_to_solid.stl.gz │ │ ├── solid.stl.gz │ │ ├── tube.stl.gz │ │ └── tube_to_solid.stl.gz │ └── tube │ │ ├── g │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── createBafflesDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ ├── meshQualityDict │ ├── residuals │ ├── shell │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution │ ├── snappyHexMeshDict.orig │ ├── solid │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution │ └── tube │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution ├── incompressible ├── SRFPimpleFoam │ └── rotor2D │ │ ├── 0 │ │ ├── Urel │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p │ │ ├── Allrun │ │ ├── constant │ │ ├── SRFProperties │ │ ├── transportProperties │ │ └── turbulenceProperties │ │ ├── makeMesh │ │ └── system │ │ ├── blockMeshDict.m4 │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── SRFSimpleFoam │ └── mixer │ │ ├── 0 │ │ ├── Urel │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ ├── omega │ │ └── p │ │ ├── constant │ │ ├── SRFProperties │ │ ├── transportProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── adjointShapeOptimizationFoam │ └── pitzDaily │ │ ├── 0 │ │ ├── U │ │ ├── Ua │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ ├── p │ │ └── pa │ │ ├── constant │ │ ├── transportProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── boundaryFoam │ ├── boundaryLaunderSharma │ │ ├── 0 │ │ │ ├── U │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nu.xy │ │ │ ├── nuTilda │ │ │ └── nut │ │ ├── constant │ │ │ ├── gammaDot.xy │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── boundaryWallFunctions │ │ ├── 0 │ │ │ ├── U │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nu.xy │ │ │ ├── nuTilda │ │ │ └── nut │ │ ├── constant │ │ │ ├── gammaDot.xy │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── boundaryWallFunctionsProfile │ │ ├── 0 │ │ ├── U │ │ ├── epsilon │ │ ├── k │ │ ├── nuTilda │ │ ├── nut │ │ ├── nut.k │ │ ├── nut.spalding │ │ └── omega │ │ ├── Allclean │ │ ├── Allrun │ │ ├── README │ │ ├── constant │ │ ├── transportProperties │ │ ├── transportProperties.template │ │ └── turbulenceProperties │ │ ├── foamLog.db │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── icoFoam │ ├── cavity │ │ ├── Allclean │ │ ├── Allrun │ │ ├── cavity │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── constant │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── cavityClipped │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ └── p │ │ │ ├── constant │ │ │ │ └── transportProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── mapFieldsDict │ │ └── cavityGrade │ │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ │ ├── constant │ │ │ └── transportProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── mapFieldsDict │ └── elbow │ │ ├── 0 │ │ ├── U │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ └── transportProperties │ │ ├── elbow.msh │ │ └── system │ │ ├── controlDict │ │ ├── foamDataToFluentDict │ │ ├── fvSchemes │ │ └── fvSolution ├── nonNewtonianIcoFoam │ └── offsetCylinder │ │ ├── 0 │ │ ├── U │ │ └── p │ │ ├── constant │ │ └── transportProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── pimpleFoam │ ├── LES │ │ └── channel395 │ │ │ ├── 0 │ │ │ ├── B.gz │ │ │ ├── U.gz │ │ │ ├── k.gz │ │ │ ├── nuTilda.gz │ │ │ ├── nut.gz │ │ │ └── p.gz │ │ │ ├── 0.orig │ │ │ ├── U │ │ │ ├── k │ │ │ ├── nuTilda │ │ │ ├── nut │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── fvOptions │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── postChannelDict │ ├── RAS │ │ ├── TJunction │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nuTilda │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── README.txt │ │ │ ├── constant │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── TJunctionFan │ │ │ ├── 0.orig │ │ │ │ ├── U │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nuTilda │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── README.txt │ │ │ ├── constant │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── createBafflesDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── topoSetDict │ │ ├── elipsekkLOmega │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── kl │ │ │ │ ├── kt │ │ │ │ ├── nut │ │ │ │ ├── omega │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── createPatchDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── mirrorMeshDict.x │ │ │ │ ├── mirrorMeshDict.y │ │ │ │ └── topoSetDict │ │ ├── impeller │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── oscillatingInletACMI2D │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── Allmesh │ │ │ ├── Allrun │ │ │ ├── Allrun-parallel │ │ │ ├── README │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── createBafflesDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── topoSetDict │ │ ├── pitzDaily │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nuTilda │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── constant │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── pitzDailyLTS │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nuTilda │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── constant │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── propeller │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ ├── Allclean │ │ │ ├── Allmesh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── createBafflesDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── forces │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── snappyHexMeshDict │ │ │ │ ├── surfaceFeaturesDict │ │ │ │ └── surfaces │ │ └── wingMotion │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── wingMotion2D_pimpleFoam │ │ │ ├── 0 │ │ │ │ └── include │ │ │ │ │ ├── fixedInlet │ │ │ │ │ ├── frontBackTopBottomPatches │ │ │ │ │ └── initialConditions │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── pointDisplacement │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ ├── wingMotion2D_simpleFoam │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── include │ │ │ │ │ ├── fixedInlet │ │ │ │ │ ├── frontBackTopBottomPatches │ │ │ │ │ └── initialConditions │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── omega │ │ │ │ └── p │ │ │ ├── constant │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── controlDict │ │ │ │ ├── createPatchDict │ │ │ │ ├── extrudeMeshDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ └── wingMotion_snappyHexMesh │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── snappyHexMeshDict │ └── laminar │ │ ├── blockedChannel │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ └── tracer │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvOptions │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── generateAlphaSolid │ │ │ └── scalarTransport │ │ ├── mixerVesselAMI2D │ │ ├── 0 │ │ │ ├── U │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p │ │ ├── Allrun │ │ ├── constant │ │ │ ├── dynamicMeshDict │ │ │ ├── transportProperties │ │ │ ├── triSurface │ │ │ │ └── projectionSurface.stl │ │ │ └── turbulenceProperties │ │ ├── makeMesh │ │ └── system │ │ │ ├── blockMeshDict.m4 │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── topoSetDict │ │ ├── movingCone │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ └── pointMotionUx │ │ ├── constant │ │ │ ├── dynamicMeshDict │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── cuttingPlane │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── offsetCylinder │ │ ├── 0 │ │ │ ├── U │ │ │ └── p │ │ ├── constant │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── planarContraction │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ └── sigma │ │ ├── constant │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── graphs │ │ ├── planarCouette │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ └── sigma │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── createPatchDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── planarPoiseuille │ │ ├── 0 │ │ ├── U │ │ ├── p │ │ └── sigma │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── fvOptions │ │ ├── transportProperties │ │ └── turbulenceProperties │ │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── probes │ │ ├── residuals │ │ └── singleGraph │ │ └── validation │ │ ├── WatersKing │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── WatersKing.C │ │ └── createFields.H │ │ └── createGraph ├── pisoFoam │ ├── LES │ │ ├── motorBike │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── lesFiles │ │ │ │ ├── Allrun │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── turbulenceProperties │ │ │ └── motorBike │ │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── include │ │ │ │ │ ├── fixedInlet │ │ │ │ │ ├── frontBackUpperPatches │ │ │ │ │ └── initialConditions │ │ │ │ ├── k │ │ │ │ ├── nuTilda │ │ │ │ ├── nut │ │ │ │ └── p │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ ├── transportProperties │ │ │ │ ├── triSurface │ │ │ │ │ └── README │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── cuttingPlane │ │ │ │ ├── decomposeParDict │ │ │ │ ├── decomposeParDict.hierarchical │ │ │ │ ├── decomposeParDict.ptscotch │ │ │ │ ├── forceCoeffs │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── snappyHexMeshDict │ │ │ │ └── streamLines │ │ ├── pitzDaily │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── k │ │ │ │ ├── nuTilda │ │ │ │ ├── nut │ │ │ │ ├── p │ │ │ │ └── s │ │ │ ├── constant │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── pitzDailyMapped │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── k │ │ │ ├── nuTilda │ │ │ ├── nut │ │ │ └── p │ │ │ ├── constant │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── RAS │ │ ├── cavity │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nuTilda │ │ │ │ ├── nut │ │ │ │ ├── omega │ │ │ │ └── p │ │ │ ├── constant │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── cavityCoupledU │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nuTilda │ │ │ ├── nut │ │ │ └── p │ │ │ ├── constant │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── laminar │ │ └── porousBlockage │ │ ├── 0 │ │ ├── U │ │ └── p │ │ ├── Allrun │ │ ├── constant │ │ ├── fvOptions │ │ ├── transportProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── topoSetDict ├── porousSimpleFoam │ ├── angledDuctExplicit │ │ ├── Allrun │ │ └── system │ │ │ ├── blockMeshDict.m4 │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── angledDuctImplicit │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p │ │ ├── Allrun │ │ ├── constant │ │ │ ├── porosityProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict.m4 │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── straightDuctImplicit │ │ ├── 0 │ │ ├── T │ │ ├── U │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p │ │ ├── Allclean │ │ ├── Allmesh │ │ ├── Allrun │ │ ├── README.txt │ │ ├── constant │ │ ├── porosityProperties │ │ ├── transportProperties │ │ ├── triSurface │ │ │ ├── boundaryAndFaceZones.stl │ │ │ ├── porosity.stl │ │ │ ├── porosity_inflated.stl │ │ │ └── straightDuct.stl │ │ └── turbulenceProperties │ │ └── system │ │ ├── backgroundMeshDecomposition │ │ ├── fvSchemes │ │ └── fvSolution │ │ ├── cellShapeControlMesh │ │ ├── fvSchemes │ │ └── fvSolution │ │ ├── collapseDict │ │ ├── collapseDict.collapseFaces │ │ ├── collapseDict.indirectPatchFaces │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── foamyHexMeshDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── meshDict.conformationSurfaces │ │ ├── meshDict.geometry │ │ ├── meshDict.shapeControlFunctions │ │ ├── meshQualityDict │ │ └── surfaceFeaturesDict ├── shallowWaterFoam │ └── squareBump │ │ ├── 0 │ │ ├── h.orig │ │ ├── hTotal │ │ └── hU.orig │ │ ├── Allrun │ │ ├── constant │ │ ├── gravitationalProperties │ │ └── h0.orig │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict └── simpleFoam │ ├── T3A │ ├── 0 │ │ ├── ReThetat │ │ ├── U │ │ ├── gammaInt │ │ ├── k │ │ ├── nut │ │ ├── omega │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── README │ ├── constant │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── kGraph │ │ └── wallShearStressGraph │ └── validation │ │ ├── createGraphs │ │ └── exptData │ │ └── T3A.dat │ ├── airFoil2D │ ├── 0 │ │ ├── U │ │ ├── nuTilda │ │ ├── nut │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── polyMesh │ │ │ ├── boundary │ │ │ ├── cells │ │ │ ├── faces │ │ │ ├── neighbour │ │ │ ├── owner │ │ │ └── points │ │ ├── transportProperties │ │ └── turbulenceProperties │ └── system │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── mixerVessel2D │ ├── 0 │ │ ├── U │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p │ ├── Allrun │ ├── constant │ │ ├── MRFProperties │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── makeMesh │ └── system │ │ ├── blockMeshDict.m4 │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── motorBike │ ├── 0 │ │ ├── U.orig │ │ ├── include │ │ │ ├── fixedInlet │ │ │ ├── frontBackUpperPatches │ │ │ └── initialConditions │ │ ├── k │ │ ├── nut │ │ ├── omega │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── transportProperties │ │ ├── triSurface │ │ │ └── README │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── cuttingPlane │ │ ├── decomposeParDict │ │ ├── forceCoeffs │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── meshQualityDict │ │ ├── snappyHexMeshDict │ │ ├── streamLines │ │ └── surfaceFeaturesDict │ ├── pipeCyclic │ ├── 0 │ │ ├── U │ │ ├── epsilon │ │ ├── k │ │ ├── nuTilda │ │ ├── nut │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── transportProperties │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── topoSetDict │ ├── pitzDaily │ ├── 0 │ │ ├── U │ │ ├── epsilon │ │ ├── f │ │ ├── k │ │ ├── nuTilda │ │ ├── nut │ │ ├── omega │ │ ├── p │ │ └── v2 │ ├── constant │ │ ├── transportProperties │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── streamlines │ ├── pitzDailyExptInlet │ ├── 0 │ │ ├── U │ │ ├── epsilon │ │ ├── k │ │ ├── nuTilda │ │ ├── nut │ │ └── p │ ├── constant │ │ ├── boundaryData │ │ │ └── inlet │ │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── epsilon │ │ │ │ └── k │ │ │ │ └── points │ │ ├── transportProperties │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── rotorDisk │ ├── 0 │ │ ├── U │ │ ├── k │ │ ├── nut │ │ ├── omega │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── transportProperties │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvOptions │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── meshQualityDict │ │ ├── snappyHexMeshDict │ │ └── surfaceFeaturesDict │ ├── turbineSiting │ ├── 0 │ │ ├── U │ │ ├── epsilon │ │ ├── include │ │ │ ├── ABLConditions │ │ │ ├── fixedInlet │ │ │ ├── initialConditions │ │ │ └── sideAndTopPatches │ │ ├── k │ │ ├── nut │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── fvOptions │ │ ├── transportProperties │ │ ├── triSurface │ │ │ └── terrain.stl │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict.hierarchical │ │ ├── decomposeParDict.ptscotch │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── snappyHexMeshDict │ │ └── topoSetDict │ └── windAroundBuildings │ ├── 0 │ ├── U │ ├── epsilon │ ├── k │ ├── nut │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── transportProperties │ ├── triSurface │ │ └── buildings.obj.gz │ └── turbulenceProperties │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ ├── fvSolution │ ├── meshQualityDict │ ├── snappyHexMeshDict │ └── surfaceFeaturesDict ├── lagrangian ├── DPMFoam │ └── Goldschmidt │ │ ├── 0 │ │ ├── U.air │ │ └── p │ │ ├── constant │ │ ├── g │ │ ├── kinematicCloudPositions │ │ ├── kinematicCloudProperties │ │ ├── transportProperties │ │ └── turbulenceProperties.air │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── mapFieldsDict ├── MPPICFoam │ ├── Goldschmidt │ │ ├── 0 │ │ │ ├── U.air │ │ │ └── p │ │ ├── constant │ │ │ ├── g │ │ │ ├── kinematicCloudPositions │ │ │ ├── kinematicCloudProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties.air │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── column │ │ ├── 0 │ │ │ ├── U.air │ │ │ └── p │ │ ├── constant │ │ │ ├── g │ │ │ ├── kinematicCloudPositions │ │ │ ├── kinematicCloudProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties.air │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── cyclone │ │ ├── 0 │ │ │ ├── U.air │ │ │ ├── k.air │ │ │ ├── nut.air │ │ │ └── p │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── kinematicCloudProperties │ │ │ ├── transportProperties │ │ │ ├── triSurface │ │ │ │ └── README │ │ │ └── turbulenceProperties.air │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── snappyHexMeshDict │ └── injectionChannel │ │ ├── 0 │ │ ├── U.air │ │ └── p │ │ ├── constant │ │ ├── g │ │ ├── kinematicCloudProperties │ │ ├── transportProperties │ │ └── turbulenceProperties.air │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── coalChemistryFoam │ └── simplifiedSiwek │ │ ├── 0 │ │ ├── CH4 │ │ ├── CO │ │ ├── CO2 │ │ ├── G │ │ ├── H2 │ │ ├── H2O │ │ ├── N2 │ │ ├── O2 │ │ ├── T │ │ ├── U │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p.orig │ │ ├── Allrun │ │ ├── constant │ │ ├── chemistryProperties │ │ ├── coalCloud1Positions │ │ ├── coalCloud1Properties │ │ ├── combustionProperties │ │ ├── foam.dat │ │ ├── foam.inp │ │ ├── fvOptions │ │ ├── g │ │ ├── limestoneCloud1Properties │ │ ├── limestonePositions │ │ ├── radiationProperties │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── topoSetDict ├── icoUncoupledKinematicParcelFoam │ ├── hopper │ │ ├── Allclean │ │ ├── Allrun │ │ ├── hopperEmptying │ │ │ ├── 0.orig │ │ │ │ ├── U │ │ │ │ ├── mu │ │ │ │ └── rho │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── kinematicCloudProperties │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── mapFieldsDict │ │ └── hopperInitialState │ │ │ ├── 0 │ │ │ └── U │ │ │ ├── constant │ │ │ ├── g │ │ │ ├── kinematicCloudPositions │ │ │ ├── kinematicCloudProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── mixerVesselAMI2D │ │ ├── 0 │ │ └── U │ │ ├── Allrun │ │ ├── constant │ │ ├── dynamicMeshDict │ │ ├── g │ │ ├── kinematicCloudPositions │ │ ├── kinematicCloudProperties │ │ ├── transportProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict.m4 │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── reactingParcelFoam │ ├── counterFlowFlame2DLTS │ │ ├── 0 │ │ │ ├── CH4 │ │ │ ├── CO2 │ │ │ ├── H2O │ │ │ ├── N2 │ │ │ ├── O2 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── nut │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ └── rho │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── combustionProperties │ │ │ ├── g │ │ │ ├── radiationProperties │ │ │ ├── reactingCloud1Properties │ │ │ ├── reactions │ │ │ ├── thermo.compressibleGas │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── cylinder │ │ ├── 0 │ │ │ ├── H2O │ │ │ ├── N2 │ │ │ ├── O2 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ └── wallFilmRegion │ │ │ │ ├── Tf │ │ │ │ ├── Uf │ │ │ │ └── deltaf │ │ ├── Allclean │ │ ├── Allmesh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── combustionProperties │ │ │ ├── foam.dat │ │ │ ├── foam.inp │ │ │ ├── g │ │ │ ├── parcelInjectionProperties │ │ │ ├── radiationProperties │ │ │ ├── reactingCloud1Properties │ │ │ ├── surfaceFilmProperties │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── createPatchDict │ │ │ ├── decomposeParDict │ │ │ ├── extrudeToRegionMeshDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── topoSetDict │ │ │ └── wallFilmRegion │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── filter │ │ ├── 0.orig │ │ │ ├── G │ │ │ ├── H2O │ │ │ ├── N2 │ │ │ ├── O2 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── combustionProperties │ │ │ ├── fvOptions │ │ │ ├── g │ │ │ ├── parcelInjectionProperties │ │ │ ├── particleTrackProperties │ │ │ ├── radiationProperties │ │ │ ├── reactingCloud1Properties │ │ │ ├── reactions │ │ │ ├── thermo.incompressiblePoly │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── createBafflesDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── topoSetDict │ ├── hotBoxes │ │ ├── 0.orig │ │ │ ├── H2O │ │ │ ├── N2 │ │ │ ├── O2 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── htcConv │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ └── wallFilmRegion │ │ │ │ ├── Tf │ │ │ │ ├── Uf │ │ │ │ └── deltaf │ │ ├── Allclean │ │ ├── Allmesh │ │ ├── Allrun │ │ ├── Allrun-parallel │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── combustionProperties │ │ │ ├── foam.dat │ │ │ ├── foam.inp │ │ │ ├── g │ │ │ ├── radiationProperties │ │ │ ├── reactingCloud1Properties │ │ │ ├── surfaceFilmProperties │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ ├── createObstacle.setSet │ │ ├── createWallFilmZone.setSet │ │ ├── patchify.setSet │ │ ├── patchifyObstacles │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── extrudeToRegionMeshDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── topoSetDict │ │ │ └── wallFilmRegion.orig │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── parcelInBox │ │ ├── 0 │ │ │ ├── G │ │ │ ├── H2O │ │ │ ├── T │ │ │ ├── U │ │ │ ├── air │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── README │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── combustionProperties │ │ │ ├── g │ │ │ ├── radiationProperties │ │ │ ├── reactingCloud1Positions │ │ │ ├── reactingCloud1Properties │ │ │ ├── reactions │ │ │ ├── thermo.incompressiblePoly │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── probesDict │ ├── rivuletPanel │ │ ├── 0 │ │ │ ├── H2O │ │ │ ├── N2 │ │ │ ├── O2 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ └── wallFilmRegion │ │ │ │ ├── Tf │ │ │ │ ├── Uf │ │ │ │ └── deltaf │ │ ├── Allclean │ │ ├── Allmesh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── combustionProperties │ │ │ ├── foam.dat │ │ │ ├── foam.inp │ │ │ ├── g │ │ │ ├── parcelInjectionProperties │ │ │ ├── radiationProperties │ │ │ ├── reactingCloud1Properties │ │ │ ├── surfaceFilmProperties │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ ├── createWallFilmRegionPatches.setSet │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── createPatchDict │ │ │ ├── decomposeParDict │ │ │ ├── extrudeToRegionMeshDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── wallFilmRegion.topoSet │ │ │ └── wallFilmRegion │ │ │ │ ├── createPatchDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── wallFilmRegion.setSet │ ├── splashPanel │ │ ├── 0 │ │ │ ├── H2O │ │ │ ├── N2 │ │ │ ├── O2 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ └── wallFilmRegion │ │ │ │ ├── Tf │ │ │ │ ├── Uf │ │ │ │ └── deltaf │ │ ├── Allclean │ │ ├── Allmesh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── combustionProperties │ │ │ ├── foam.dat │ │ │ ├── foam.inp │ │ │ ├── g │ │ │ ├── parcelInjectionProperties │ │ │ ├── radiationProperties │ │ │ ├── reactingCloud1Properties │ │ │ ├── surfaceFilmProperties │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ ├── createWallFilmRegionPatches.setSet │ │ ├── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── createPatchDict │ │ │ ├── decomposeParDict │ │ │ ├── extrudeToRegionMeshDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── wallFilmRegion.topoSet │ │ │ └── wallFilmRegion │ │ │ │ ├── createPatchDict │ │ │ │ ├── createWallFilmRegionPatches.topoSet │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── wallFilmRegion.setSet │ ├── verticalChannel │ │ ├── 0 │ │ │ ├── H2O │ │ │ ├── T │ │ │ ├── U.orig │ │ │ ├── air │ │ │ ├── alphat │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── chemistryProperties │ │ │ ├── combustionProperties │ │ │ ├── g │ │ │ ├── particleTrackProperties │ │ │ ├── radiationProperties │ │ │ ├── reactingCloud1Properties │ │ │ ├── reactions │ │ │ ├── thermo.incompressiblePoly │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── verticalChannelLTS │ │ ├── 0 │ │ ├── H2O │ │ ├── T │ │ ├── U.orig │ │ ├── air │ │ ├── alphat │ │ ├── k │ │ ├── nut │ │ ├── omega │ │ ├── p │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── g │ │ ├── particleTrackDict │ │ ├── radiationProperties │ │ ├── reactingCloud1Properties │ │ ├── reactions │ │ ├── thermo.incompressiblePoly │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── simpleReactingParcelFoam │ └── verticalChannel │ │ ├── 0 │ │ ├── H2O │ │ ├── T │ │ ├── U.orig │ │ ├── air │ │ ├── alphat │ │ ├── k │ │ ├── nut │ │ ├── omega │ │ └── p │ │ ├── Allrun │ │ ├── constant │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── g │ │ ├── particleTrackDict │ │ ├── radiationProperties │ │ ├── reactingCloud1Properties │ │ ├── reactions │ │ ├── thermo.incompressiblePoly │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution └── sprayFoam │ └── aachenBomb │ ├── 0 │ ├── N2 │ ├── O2 │ ├── T │ ├── U │ ├── Ydefault │ ├── alphat │ ├── epsilon │ ├── k │ ├── nut │ └── p │ ├── chemkin │ ├── chem.inp │ ├── therm.dat │ └── transportProperties │ ├── constant │ ├── chemistryProperties │ ├── combustionProperties │ ├── g │ ├── radiationProperties │ ├── sprayCloudProperties │ ├── thermophysicalProperties │ └── turbulenceProperties │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution ├── mesh ├── blockMesh │ ├── pipe │ │ ├── Allrun │ │ ├── constant │ │ │ └── geometry │ │ │ │ └── curve2.vtk │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── sphere │ │ ├── Allrun │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── sphere7 │ │ ├── Allrun │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── sphere7ProjectedEdges │ │ ├── Allrun │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── foamyHexMesh │ ├── Allrun │ ├── blob │ │ ├── Allclean │ │ ├── Allrun │ │ ├── Allrun-parallel │ │ ├── constant │ │ │ └── triSurface │ │ │ │ └── README │ │ └── system │ │ │ ├── backgroundMeshDecomposition │ │ │ ├── blockMeshDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── collapseDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── foamyHexMeshDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── snappyHexMeshDict │ │ │ └── topoSetDict │ ├── flange │ │ ├── Allclean │ │ ├── Allrun │ │ ├── Allrun-parallel │ │ ├── constant │ │ │ └── triSurface │ │ │ │ └── README │ │ └── system │ │ │ ├── backgroundMeshDecomposition │ │ │ ├── blockMeshDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── collapseDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── faceSetDict │ │ │ ├── foamyHexMeshDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshDict.geometry │ │ │ ├── meshQualityDict │ │ │ ├── snappyHexMeshDict │ │ │ ├── topoSetDict-background │ │ │ └── topoSetDict-slices │ ├── mixerVessel │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.phase1.orig │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allmesh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ ├── triSurface │ │ │ │ ├── rawSurfaces │ │ │ │ │ ├── baffles.stl │ │ │ │ │ ├── gasInlet.stl │ │ │ │ │ ├── outlet.stl │ │ │ │ │ ├── rotating.stl │ │ │ │ │ ├── rotating_unscaled.stl │ │ │ │ │ ├── shaft.stl │ │ │ │ │ ├── shaftRotating.stl │ │ │ │ │ ├── sparger.stl │ │ │ │ │ ├── stirrer.stl │ │ │ │ │ └── vessel.stl │ │ │ │ ├── surfaceProcess.sh │ │ │ │ ├── zone_sparger.vtk │ │ │ │ └── zone_stirrer_baffles.vtk │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── backgroundMeshDecomposition │ │ │ ├── blockMeshDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── collapseDict │ │ │ ├── collapseDict.collapseFaces │ │ │ ├── collapseDict.indirectPatchFaces │ │ │ ├── controlDict │ │ │ ├── controlDict.flow │ │ │ ├── controlDict.mesh │ │ │ ├── createBafflesDict │ │ │ ├── createPatchDict │ │ │ ├── decomposeParDict │ │ │ ├── foamyHexMeshDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshDict.cellShapeControl │ │ │ ├── meshDict.conformationSurfaces │ │ │ ├── meshDict.geometry │ │ │ ├── meshQualityDict │ │ │ ├── setFieldsDict │ │ │ └── surfaceFeaturesDict │ └── simpleShapes │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ └── triSurface │ │ │ ├── cone.stl │ │ │ └── sphere.stl │ │ └── system │ │ ├── collapseDict │ │ ├── controlDict │ │ ├── foamyHexMeshDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── meshQualityDict │ │ └── topoSetDict ├── foamyQuadMesh │ ├── Allrun │ ├── jaggedBoundary │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ └── triSurface │ │ │ │ └── jaggedBoundary.stl │ │ └── system │ │ │ ├── controlDict │ │ │ ├── extrude2DMeshDict │ │ │ ├── foamyQuadMeshDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── surfaceFeaturesDict │ └── square │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ └── triSurface │ │ │ └── unit_cube.stl │ │ └── system │ │ ├── controlDict │ │ ├── extrude2DMeshDict │ │ ├── foamyQuadMeshDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── surfaceFeaturesDict ├── moveDynamicMesh │ └── SnakeRiverCanyon │ │ ├── 0 │ │ └── pointDisplacement │ │ ├── constant │ │ ├── dynamicMeshDict │ │ ├── transportProperties │ │ └── triSurface │ │ │ ├── ACROSSCYN.JPG │ │ │ ├── AcrossCyn.XYZ │ │ │ └── AcrossRiver.stl.gz │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution ├── refineMesh │ └── refineFieldDirs │ │ ├── Allclean │ │ ├── Allrun │ │ ├── calcRadiusField │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── calcRadiusField.C │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── refineMeshDict.range1 │ │ ├── refineMeshDict.range2 │ │ ├── refineMeshDict.range3 │ │ ├── refineMeshDict.tier1 │ │ ├── refineMeshDict.tier2 │ │ ├── refineMeshDict.tier3 │ │ ├── refineMeshDict.tier4 │ │ ├── refineMeshDict.tier5 │ │ ├── refineMeshDict.tier6 │ │ ├── topoSetDict.range1 │ │ ├── topoSetDict.range2 │ │ ├── topoSetDict.range3 │ │ ├── topoSetDict.tier1 │ │ ├── topoSetDict.tier2 │ │ ├── topoSetDict.tier3 │ │ ├── topoSetDict.tier4 │ │ ├── topoSetDict.tier5 │ │ └── topoSetDict.tier6 └── snappyHexMesh │ ├── Allrun │ └── flange │ ├── Allclean │ ├── Allrun │ ├── constant │ └── triSurface │ │ └── README │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ ├── meshQualityDict │ ├── snappyHexMeshDict │ └── surfaceFeaturesDict ├── multiphase ├── cavitatingFoam │ ├── LES │ │ ├── Allrun │ │ ├── throttle │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.vapour │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── p │ │ │ │ └── rho │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── thermodynamicProperties │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── refineMeshDict │ │ │ │ ├── topoSetDict.1 │ │ │ │ ├── topoSetDict.2 │ │ │ │ └── topoSetDict.3 │ │ └── throttle3D │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.vapour │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ └── rho │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── thermodynamicProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── mapFieldsDict │ │ │ ├── refineMeshDict │ │ │ ├── topoSetDict.1 │ │ │ ├── topoSetDict.2 │ │ │ └── topoSetDict.3 │ └── RAS │ │ └── throttle │ │ ├── 0 │ │ ├── U │ │ ├── alpha.vapour │ │ ├── k │ │ ├── nut │ │ ├── omega │ │ ├── p │ │ └── rho │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── thermodynamicProperties │ │ ├── transportProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── refineMeshDict │ │ ├── topoSetDict.1 │ │ ├── topoSetDict.2 │ │ └── topoSetDict.3 ├── compressibleInterFoam │ └── laminar │ │ ├── climbingRod │ │ ├── 0 │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alpha.liquid.orig │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ └── sigma.liquid │ │ ├── Allclean │ │ ├── Allrun │ │ ├── README │ │ ├── constant │ │ │ ├── fvOptions │ │ │ ├── g │ │ │ ├── thermophysicalProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.liquid │ │ │ ├── turbulenceProperties │ │ │ ├── turbulenceProperties.air │ │ │ └── turbulenceProperties.liquid │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── extrudeMeshDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── depthCharge2D │ │ ├── 0 │ │ │ ├── T.orig │ │ │ ├── U │ │ │ ├── alpha.water.orig │ │ │ ├── p.orig │ │ │ └── p_rgh.orig │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── thermophysicalProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.water │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── depthCharge3D │ │ ├── 0 │ │ │ ├── T.orig │ │ │ ├── U │ │ │ ├── alpha.water.orig │ │ │ ├── p.orig │ │ │ └── p_rgh.orig │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── thermophysicalProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.water │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ └── sloshingTank2D │ │ ├── 0 │ │ ├── T │ │ ├── U │ │ ├── alpha.water.orig │ │ ├── p │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── dynamicMeshDict │ │ ├── g │ │ ├── thermophysicalProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.water │ │ ├── transportProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict.m4 │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── compressibleMultiphaseInterFoam │ └── laminar │ │ └── damBreak4phase │ │ ├── 0 │ │ ├── T │ │ ├── U │ │ ├── alpha.air.orig │ │ ├── alpha.mercury.orig │ │ ├── alpha.oil.orig │ │ ├── alpha.water.orig │ │ ├── p │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── g │ │ ├── thermophysicalProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.mercury │ │ ├── thermophysicalProperties.oil │ │ ├── thermophysicalProperties.water │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── driftFluxFoam │ └── RAS │ │ ├── dahl │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.sludge │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p_rgh │ │ ├── constant │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── mixerVessel2D │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.sludge │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── MRFProperties │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── makeMesh │ │ └── system │ │ │ ├── blockMeshDict.m4 │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── setFieldsDict │ │ │ └── topoSetDict │ │ └── tank3D │ │ ├── 0 │ │ ├── U │ │ ├── alpha.sludge │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── g │ │ ├── polyMesh │ │ │ ├── boundary │ │ │ ├── cells.gz │ │ │ ├── faces.gz │ │ │ ├── neighbour.gz │ │ │ ├── owner.gz │ │ │ └── points.gz │ │ ├── transportProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── interFoam │ ├── LES │ │ └── nozzleFlow2D │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.fuel │ │ │ ├── data │ │ │ │ ├── Ubulk │ │ │ │ └── ptrace │ │ │ ├── k │ │ │ ├── nuTilda │ │ │ ├── nut │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── refineMeshDict │ │ │ ├── topoSetDict.1 │ │ │ └── topoSetDict.2 │ ├── RAS │ │ ├── DTCHull │ │ │ ├── 0 │ │ │ │ ├── U.orig │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── k.orig │ │ │ │ ├── nut.orig │ │ │ │ ├── omega.orig │ │ │ │ ├── p_rgh.orig │ │ │ │ └── pointDisplacement.orig │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── README │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── hRef │ │ │ │ ├── transportProperties │ │ │ │ ├── triSurface │ │ │ │ │ └── README │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── meshQualityDict │ │ │ │ ├── refineMeshDict │ │ │ │ ├── setFieldsDict │ │ │ │ ├── snappyHexMeshDict │ │ │ │ ├── surfaceFeaturesDict │ │ │ │ ├── topoSetDict.1 │ │ │ │ ├── topoSetDict.2 │ │ │ │ ├── topoSetDict.3 │ │ │ │ ├── topoSetDict.4 │ │ │ │ ├── topoSetDict.5 │ │ │ │ └── topoSetDict.6 │ │ ├── DTCHullMoving │ │ │ ├── 0 │ │ │ │ ├── U.orig │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── k.orig │ │ │ │ ├── nut.orig │ │ │ │ ├── omega.orig │ │ │ │ ├── p_rgh.orig │ │ │ │ └── pointDisplacement.orig │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── README │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── dynamicMeshDict.sixDoF │ │ │ │ ├── g │ │ │ │ ├── hRef │ │ │ │ ├── transportProperties │ │ │ │ ├── triSurface │ │ │ │ │ └── README │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── meshQualityDict │ │ │ │ ├── refineMeshDict │ │ │ │ ├── setFieldsDict │ │ │ │ ├── snappyHexMeshDict │ │ │ │ ├── surfaceFeaturesDict │ │ │ │ ├── topoSetDict.1 │ │ │ │ ├── topoSetDict.2 │ │ │ │ ├── topoSetDict.3 │ │ │ │ ├── topoSetDict.4 │ │ │ │ ├── topoSetDict.5 │ │ │ │ └── topoSetDict.6 │ │ ├── DTCHullWave │ │ │ ├── 0 │ │ │ │ ├── U.orig │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── k.orig │ │ │ │ ├── nut.orig │ │ │ │ ├── omega.orig │ │ │ │ ├── p_rgh.orig │ │ │ │ └── pointDisplacement.orig │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── hRef │ │ │ │ ├── transportProperties │ │ │ │ ├── triSurface │ │ │ │ │ └── README │ │ │ │ ├── turbulenceProperties │ │ │ │ └── waveProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── meshQualityDict │ │ │ │ ├── refineMeshDict │ │ │ │ ├── setWavesDict │ │ │ │ ├── snappyHexMeshDict │ │ │ │ ├── surfaceFeaturesDict │ │ │ │ ├── topoSetDict.1 │ │ │ │ ├── topoSetDict.2 │ │ │ │ ├── topoSetDict.3 │ │ │ │ ├── topoSetDict.4 │ │ │ │ ├── topoSetDict.5 │ │ │ │ └── topoSetDict.6 │ │ ├── angledDuct │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── fvOptions │ │ │ │ ├── g │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict.m4 │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── damBreak │ │ │ ├── Allclean │ │ │ ├── Allrun │ │ │ └── damBreak │ │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nuTilda │ │ │ │ ├── nut │ │ │ │ └── p_rgh │ │ │ │ ├── Allclean │ │ │ │ ├── Allrun │ │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ ├── damBreakPorousBaffle │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nuTilda │ │ │ │ ├── nut │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── createBafflesDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── setFieldsDict │ │ │ │ └── topoSetDict │ │ ├── floatingObject │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── p_rgh │ │ │ │ └── pointDisplacement │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── dynamicMeshDict.sixDoF │ │ │ │ ├── g │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── setFieldsDict │ │ │ │ └── topoSetDict │ │ ├── mixerVesselAMI │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.oil.orig │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allmesh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── transportProperties │ │ │ │ ├── triSurface │ │ │ │ │ ├── baffles.stl │ │ │ │ │ ├── oilInlet.stl │ │ │ │ │ ├── outlet.stl │ │ │ │ │ ├── rotating.stl │ │ │ │ │ ├── shaft.stl │ │ │ │ │ ├── shaftRotating.stl │ │ │ │ │ ├── sparger.stl │ │ │ │ │ ├── stirrer.stl │ │ │ │ │ └── vessel.stl │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── createBafflesDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── setFieldsDict │ │ │ │ ├── snappyHexMeshDict │ │ │ │ └── surfaceFeaturesDict │ │ ├── waterChannel │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── alpha.water.orig │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── omega │ │ │ │ └── p_rgh │ │ │ ├── Allclean │ │ │ ├── Allmesh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── extrudeMeshDict │ │ │ │ ├── extrudeMeshDict.1 │ │ │ │ ├── extrudeMeshDict.2 │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ └── weirOverflow │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.water.orig │ │ │ ├── epsilon │ │ │ ├── include │ │ │ │ └── initialConditions │ │ │ ├── k │ │ │ ├── nut │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ └── laminar │ │ ├── capillaryRise │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── damBreak │ │ ├── Allclean │ │ ├── Allrun │ │ └── damBreak │ │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── damBreakWithObstacle │ │ ├── 0 │ │ │ ├── U.orig │ │ │ ├── alpha.water.orig │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── createObstacle.setSet │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── setFieldsDict │ │ │ └── topoSetDict │ │ ├── mixerVessel2D │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── MRFProperties │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── makeMesh │ │ └── system │ │ │ ├── blockMeshDict.m4 │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── setFieldsDict │ │ │ └── topoSetDict │ │ ├── sloshingCylinder │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── setFieldsDict │ │ │ └── snappyHexMeshDict │ │ ├── sloshingTank2D │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict.m4 │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── sloshingTank2D3DoF │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict.m4 │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── sloshingTank3D │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict.m4 │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── sloshingTank3D3DoF │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict.m4 │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── sloshingTank3D6DoF │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── 6DoF.dat │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── gen6DoF │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ └── gen6DoF.C │ │ └── system │ │ │ ├── blockMeshDict.m4 │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── testTubeMixer │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ └── wave │ │ ├── 0 │ │ ├── U.orig │ │ ├── alpha.water.orig │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ ├── fvOptions │ │ ├── fvOptions.verticalDamping │ │ ├── g │ │ ├── transportProperties │ │ ├── turbulenceProperties │ │ └── waveProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── extrudeMeshDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── refineMeshDictX │ │ ├── refineMeshDictY │ │ ├── setWavesDict │ │ ├── topoSetDict1 │ │ ├── topoSetDict2 │ │ ├── topoSetDict3 │ │ ├── topoSetDict4 │ │ ├── topoSetDict5 │ │ └── topoSetDict6 ├── interMixingFoam │ └── laminar │ │ └── damBreak │ │ ├── 0 │ │ ├── U │ │ ├── alpha.air.orig │ │ ├── alpha.other.orig │ │ ├── alpha.water.orig │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── g │ │ ├── transportProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── interPhaseChangeFoam │ ├── cavitatingBullet │ │ ├── 0 │ │ │ ├── Phi │ │ │ ├── U.orig │ │ │ ├── alpha.water │ │ │ └── p_rgh.orig │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ ├── triSurface │ │ │ │ └── README │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── snappyHexMeshDict │ └── propeller │ │ ├── 0 │ │ ├── U │ │ ├── alpha.water │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allmesh │ │ ├── Allrun │ │ ├── constant │ │ ├── dynamicMeshDict │ │ ├── g │ │ ├── transportProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── createBafflesDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── snappyHexMeshDict │ │ └── surfaceFeaturesDict ├── multiphaseEulerFoam │ ├── bubbleColumn │ │ ├── 0 │ │ │ ├── T.air │ │ │ ├── T.water │ │ │ ├── Theta │ │ │ ├── U.air │ │ │ ├── U.water │ │ │ ├── alpha.air.orig │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── damBreak4phase │ │ ├── 0 │ │ │ ├── U │ │ │ ├── U.air │ │ │ ├── U.mercury │ │ │ ├── U.oil │ │ │ ├── U.water │ │ │ ├── alpha.air.orig │ │ │ ├── alpha.mercury.orig │ │ │ ├── alpha.oil.orig │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── motionProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── damBreak4phaseFine │ │ ├── 0 │ │ │ ├── U │ │ │ ├── U.air │ │ │ ├── U.mercury │ │ │ ├── U.oil │ │ │ ├── U.water │ │ │ ├── alpha.air.orig │ │ │ ├── alpha.mercury.orig │ │ │ ├── alpha.oil.orig │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── motionProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ └── mixerVessel2D │ │ ├── 0 │ │ ├── Theta │ │ ├── U.air │ │ ├── U.mercury │ │ ├── U.oil │ │ ├── U.water │ │ ├── alpha.air │ │ ├── alpha.mercury │ │ ├── alpha.oil │ │ ├── alpha.water │ │ ├── epsilon │ │ ├── k │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── MRFProperties │ │ ├── g │ │ ├── interfacialProperties │ │ ├── transportProperties │ │ └── turbulenceProperties │ │ ├── makeMesh │ │ └── system │ │ ├── blockMeshDict.m4 │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── topoSetDict ├── multiphaseInterFoam │ └── laminar │ │ ├── damBreak4phase │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.air.orig │ │ │ ├── alpha.mercury.orig │ │ │ ├── alpha.oil.orig │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── motionProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── damBreak4phaseFine │ │ ├── 0 │ │ │ ├── U │ │ │ ├── alpha.air.orig │ │ │ ├── alpha.mercury.orig │ │ │ ├── alpha.oil.orig │ │ │ ├── alpha.water.orig │ │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── motionProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ └── mixerVessel2D │ │ ├── 0 │ │ ├── U │ │ ├── alpha.air.orig │ │ ├── alpha.mercury.orig │ │ ├── alpha.oil.orig │ │ ├── alpha.water.orig │ │ └── p_rgh │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ ├── MRFProperties │ │ ├── g │ │ ├── transportProperties │ │ └── turbulenceProperties │ │ ├── makeMesh │ │ └── system │ │ ├── blockMeshDict.m4 │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── setFieldsDict │ │ └── topoSetDict ├── potentialFreeSurfaceFoam │ ├── movingOscillatingBox │ │ ├── 0.orig │ │ │ ├── U │ │ │ ├── p │ │ │ ├── p_gh │ │ │ └── pointDisplacement │ │ ├── Allclean │ │ ├── Allrun │ │ ├── constant │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── extractHeightData │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── createPatchDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── topoSetDict │ │ │ └── topoSetDict-selectBottom │ └── oscillatingBox │ │ ├── 0 │ │ ├── U │ │ ├── p │ │ └── p_gh │ │ ├── Allrun │ │ ├── constant │ │ ├── g │ │ ├── transportProperties │ │ └── turbulenceProperties │ │ ├── extractHeightData │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── topoSetDict ├── reactingMultiphaseEulerFoam │ ├── RAS │ │ ├── wallBoiling1D_2phase │ │ │ ├── 0 │ │ │ │ ├── T.gas │ │ │ │ ├── T.liquid │ │ │ │ ├── U.gas │ │ │ │ ├── U.gas2 │ │ │ │ ├── U.liquid │ │ │ │ ├── alpha.gas │ │ │ │ ├── alpha.liquid │ │ │ │ ├── alphat.gas │ │ │ │ ├── alphat.liquid │ │ │ │ ├── epsilon.gas │ │ │ │ ├── epsilon.liquid │ │ │ │ ├── k.gas │ │ │ │ ├── k.liquid │ │ │ │ ├── nut.gas │ │ │ │ ├── nut.liquid │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.gas │ │ │ │ ├── thermophysicalProperties.liquid │ │ │ │ ├── turbulenceProperties.gas │ │ │ │ └── turbulenceProperties.liquid │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict.orig │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── wallBoiling1D_3phase │ │ │ ├── 0 │ │ │ ├── T.gas │ │ │ ├── T.gas2 │ │ │ ├── T.liquid │ │ │ ├── U.gas │ │ │ ├── U.gas2 │ │ │ ├── U.liquid │ │ │ ├── alpha.gas │ │ │ ├── alpha.gas2 │ │ │ ├── alpha.liquid │ │ │ ├── alphat.gas │ │ │ ├── alphat.gas2 │ │ │ ├── alphat.liquid │ │ │ ├── epsilon.gas │ │ │ ├── epsilon.gas2 │ │ │ ├── epsilon.liquid │ │ │ ├── k.gas │ │ │ ├── k.gas2 │ │ │ ├── k.liquid │ │ │ ├── nut.gas │ │ │ ├── nut.gas2 │ │ │ ├── nut.liquid │ │ │ ├── p │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.gas │ │ │ ├── thermophysicalProperties.gas2 │ │ │ ├── thermophysicalProperties.liquid │ │ │ ├── turbulenceProperties.gas │ │ │ ├── turbulenceProperties.gas2 │ │ │ └── turbulenceProperties.liquid │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict.orig │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── laminar │ │ ├── bed │ │ ├── 0 │ │ │ ├── T.air │ │ │ ├── T.solid │ │ │ ├── T.water │ │ │ ├── U.air │ │ │ ├── U.water │ │ │ ├── alpha.air.orig │ │ │ ├── alpha.solid.orig │ │ │ ├── alpha.water.orig │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── fvOptions │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.solid │ │ │ ├── thermophysicalProperties.water │ │ │ ├── turbulenceProperties.air │ │ │ └── turbulenceProperties.water │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── bubbleColumn │ │ ├── 0 │ │ │ ├── T.air │ │ │ ├── T.water │ │ │ ├── Theta │ │ │ ├── U.air │ │ │ ├── U.water │ │ │ ├── alpha.air.orig │ │ │ ├── alpha.water.orig │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.water │ │ │ ├── turbulenceProperties.air │ │ │ └── turbulenceProperties.water │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── bubbleColumnFixedPolydisperse │ │ ├── 0 │ │ │ ├── T.air1 │ │ │ ├── T.air2 │ │ │ ├── T.water │ │ │ ├── Theta │ │ │ ├── U.air1 │ │ │ ├── U.air2 │ │ │ ├── U.water │ │ │ ├── alpha.air1.orig │ │ │ ├── alpha.air2.orig │ │ │ ├── alpha.water.orig │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.air1 │ │ │ ├── thermophysicalProperties.air2 │ │ │ ├── thermophysicalProperties.water │ │ │ ├── turbulenceProperties.air1 │ │ │ ├── turbulenceProperties.air2 │ │ │ └── turbulenceProperties.water │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── bubbleColumnPolydisperse │ │ ├── 0 │ │ │ ├── T.air1 │ │ │ ├── T.air2 │ │ │ ├── T.water │ │ │ ├── Theta │ │ │ ├── U.air1 │ │ │ ├── U.air2 │ │ │ ├── U.water │ │ │ ├── alpha.air1.orig │ │ │ ├── alpha.air2.orig │ │ │ ├── alpha.water.orig │ │ │ ├── f.air1.bubbles │ │ │ ├── f.air2.bubbles │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.air1 │ │ │ ├── thermophysicalProperties.air2 │ │ │ ├── thermophysicalProperties.water │ │ │ ├── turbulenceProperties.air1 │ │ │ ├── turbulenceProperties.air2 │ │ │ └── turbulenceProperties.water │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── setFieldsDict │ │ │ └── topoSetDict │ │ ├── mixerVessel2D │ │ ├── 0 │ │ │ ├── T.air │ │ │ ├── T.mercury │ │ │ ├── T.oil │ │ │ ├── T.water │ │ │ ├── Theta │ │ │ ├── U.air │ │ │ ├── U.mercury │ │ │ ├── U.oil │ │ │ ├── U.water │ │ │ ├── alpha.air │ │ │ ├── alpha.mercury │ │ │ ├── alpha.oil │ │ │ ├── alpha.water │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── MRFProperties │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.mercury │ │ │ ├── thermophysicalProperties.oil │ │ │ ├── thermophysicalProperties.water │ │ │ ├── turbulenceProperties.air │ │ │ ├── turbulenceProperties.mercury │ │ │ ├── turbulenceProperties.oil │ │ │ └── turbulenceProperties.water │ │ ├── makeMesh │ │ └── system │ │ │ ├── blockMeshDict.m4 │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── topoSetDict │ │ └── trickleBed │ │ ├── 0 │ │ ├── T.air │ │ ├── T.solid │ │ ├── T.water │ │ ├── U.air │ │ ├── U.water │ │ ├── alpha.air.orig │ │ ├── alpha.solid.orig │ │ ├── alpha.water.orig │ │ ├── p │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ ├── g │ │ ├── phaseProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.solid │ │ ├── thermophysicalProperties.water │ │ ├── turbulenceProperties.air │ │ └── turbulenceProperties.water │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── reactingTwoPhaseEulerFoam │ ├── LES │ │ └── bubbleColumn │ │ │ ├── 0 │ │ │ ├── T.air │ │ │ ├── T.water │ │ │ ├── Theta │ │ │ ├── U.air │ │ │ ├── U.water │ │ │ ├── alpha.air.orig │ │ │ ├── alphat.air │ │ │ ├── alphat.water │ │ │ ├── epsilon.air │ │ │ ├── epsilon.water │ │ │ ├── k.air │ │ │ ├── k.water │ │ │ ├── nut.air │ │ │ ├── nut.water │ │ │ ├── p │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.water │ │ │ ├── turbulenceProperties.air │ │ │ └── turbulenceProperties.water │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ ├── RAS │ │ ├── LBend │ │ │ ├── 0 │ │ │ │ ├── T.gas │ │ │ │ ├── T.solids │ │ │ │ ├── Theta.solids │ │ │ │ ├── U.gas │ │ │ │ ├── U.solids │ │ │ │ ├── alpha.solids │ │ │ │ ├── alphat.gas │ │ │ │ ├── alphat.solids │ │ │ │ ├── epsilon.gas │ │ │ │ ├── k.gas │ │ │ │ ├── nut.gas │ │ │ │ ├── nut.solids │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.gas │ │ │ │ ├── thermophysicalProperties.solids │ │ │ │ ├── turbulenceProperties.gas │ │ │ │ └── turbulenceProperties.solids │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── bubbleColumn │ │ │ ├── 0 │ │ │ │ ├── T.air │ │ │ │ ├── T.water │ │ │ │ ├── Theta │ │ │ │ ├── U.air │ │ │ │ ├── U.water │ │ │ │ ├── alpha.air.orig │ │ │ │ ├── alphat.air │ │ │ │ ├── alphat.water │ │ │ │ ├── epsilon.air │ │ │ │ ├── epsilon.water │ │ │ │ ├── epsilonm │ │ │ │ ├── k.air │ │ │ │ ├── k.water │ │ │ │ ├── km │ │ │ │ ├── nut.air │ │ │ │ ├── nut.water │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ ├── thermophysicalProperties.water │ │ │ │ ├── turbulenceProperties.air │ │ │ │ └── turbulenceProperties.water │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ ├── bubbleColumnEvaporatingReacting │ │ │ ├── 0 │ │ │ │ ├── AIR.gas │ │ │ │ ├── AIR.liquid │ │ │ │ ├── CO.gas │ │ │ │ ├── H2O.gas │ │ │ │ ├── H2O.liquid │ │ │ │ ├── T.gas │ │ │ │ ├── T.liquid │ │ │ │ ├── U.gas │ │ │ │ ├── U.liquid │ │ │ │ ├── Ydefault.gas │ │ │ │ ├── alpha.gas.orig │ │ │ │ ├── alpha.liquid.orig │ │ │ │ ├── alphat.gas │ │ │ │ ├── epsilon.gas │ │ │ │ ├── k.gas │ │ │ │ ├── nut.gas │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── chemistryProperties.gas │ │ │ │ ├── combustionProperties.gas │ │ │ │ ├── g │ │ │ │ ├── phaseProperties │ │ │ │ ├── reactions.gas │ │ │ │ ├── thermo.gas │ │ │ │ ├── thermophysicalProperties.gas │ │ │ │ ├── thermophysicalProperties.liquid │ │ │ │ ├── turbulenceProperties.gas │ │ │ │ └── turbulenceProperties.liquid │ │ │ └── system │ │ │ │ ├── Qdot │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ ├── bubbleColumnPolydisperse │ │ │ ├── 0 │ │ │ │ ├── T.air │ │ │ │ ├── T.water │ │ │ │ ├── Theta │ │ │ │ ├── U.air │ │ │ │ ├── U.water │ │ │ │ ├── alpha.air.orig │ │ │ │ ├── alphat.air │ │ │ │ ├── alphat.water │ │ │ │ ├── epsilon.air │ │ │ │ ├── epsilon.water │ │ │ │ ├── epsilonm │ │ │ │ ├── f.air.bubbles │ │ │ │ ├── k.air │ │ │ │ ├── k.water │ │ │ │ ├── km │ │ │ │ ├── nut.air │ │ │ │ ├── nut.water │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ ├── thermophysicalProperties.water │ │ │ │ ├── turbulenceProperties.air │ │ │ │ └── turbulenceProperties.water │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ ├── setFieldsDict │ │ │ │ └── topoSetDict │ │ ├── fluidisedBed │ │ │ ├── 0 │ │ │ │ ├── T.air │ │ │ │ ├── T.particles │ │ │ │ ├── Theta.particles │ │ │ │ ├── U.air │ │ │ │ ├── U.particles │ │ │ │ ├── alpha.air.orig │ │ │ │ ├── alpha.particles.orig │ │ │ │ ├── alphat.air │ │ │ │ ├── alphat.particles │ │ │ │ ├── epsilon.air │ │ │ │ ├── k.air │ │ │ │ ├── nut.air │ │ │ │ ├── nut.particles │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.air │ │ │ │ ├── thermophysicalProperties.particles │ │ │ │ ├── turbulenceProperties.air │ │ │ │ └── turbulenceProperties.particles │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── fvSchemes │ │ │ │ ├── fvSolution │ │ │ │ └── setFieldsDict │ │ ├── wallBoiling │ │ │ ├── 0 │ │ │ │ ├── T.gas │ │ │ │ ├── T.liquid │ │ │ │ ├── U.gas │ │ │ │ ├── U.liquid │ │ │ │ ├── alpha.gas │ │ │ │ ├── alpha.liquid │ │ │ │ ├── alphat.gas │ │ │ │ ├── alphat.liquid │ │ │ │ ├── epsilon.gas │ │ │ │ ├── epsilon.liquid │ │ │ │ ├── k.gas │ │ │ │ ├── k.liquid │ │ │ │ ├── nut.gas │ │ │ │ ├── nut.liquid │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── Tsat_water_1_2bar.csv │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.gas │ │ │ │ ├── thermophysicalProperties.liquid │ │ │ │ ├── turbulenceProperties.gas │ │ │ │ └── turbulenceProperties.liquid │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict.orig │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── wallBoiling1D │ │ │ ├── 0 │ │ │ │ ├── T.gas │ │ │ │ ├── T.liquid │ │ │ │ ├── U.gas │ │ │ │ ├── U.gas2 │ │ │ │ ├── U.liquid │ │ │ │ ├── alpha.gas │ │ │ │ ├── alpha.liquid │ │ │ │ ├── alphat.gas │ │ │ │ ├── alphat.liquid │ │ │ │ ├── epsilon.gas │ │ │ │ ├── epsilon.liquid │ │ │ │ ├── k.gas │ │ │ │ ├── k.liquid │ │ │ │ ├── nut.gas │ │ │ │ ├── nut.liquid │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.gas │ │ │ │ ├── thermophysicalProperties.liquid │ │ │ │ ├── turbulenceProperties.gas │ │ │ │ └── turbulenceProperties.liquid │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict.orig │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── wallBoilingIATE │ │ │ ├── 0 │ │ │ │ ├── T.gas │ │ │ │ ├── T.liquid │ │ │ │ ├── U.gas │ │ │ │ ├── U.liquid │ │ │ │ ├── alpha.gas │ │ │ │ ├── alpha.liquid │ │ │ │ ├── alphat.gas │ │ │ │ ├── alphat.liquid │ │ │ │ ├── epsilon.gas │ │ │ │ ├── epsilon.liquid │ │ │ │ ├── k.gas │ │ │ │ ├── k.liquid │ │ │ │ ├── kappai.gas │ │ │ │ ├── nut.gas │ │ │ │ ├── nut.liquid │ │ │ │ ├── p │ │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── Tsat_water_1_2bar.csv │ │ │ ├── constant │ │ │ │ ├── g │ │ │ │ ├── phaseProperties │ │ │ │ ├── thermophysicalProperties.gas │ │ │ │ ├── thermophysicalProperties.liquid │ │ │ │ ├── turbulenceProperties.gas │ │ │ │ └── turbulenceProperties.liquid │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict.orig │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ └── wallBoilingPolyDisperse │ │ │ ├── 0 │ │ │ ├── T.gas │ │ │ ├── T.liquid │ │ │ ├── U.gas │ │ │ ├── U.liquid │ │ │ ├── alpha.gas │ │ │ ├── alpha.liquid │ │ │ ├── alphat.gas │ │ │ ├── alphat.liquid │ │ │ ├── epsilon.gas │ │ │ ├── epsilon.liquid │ │ │ ├── f.gas.bubbles │ │ │ ├── k.gas │ │ │ ├── k.liquid │ │ │ ├── nut.gas │ │ │ ├── nut.liquid │ │ │ ├── p │ │ │ └── p_rgh │ │ │ ├── Allrun │ │ │ ├── Tsat_water_1_2bar.csv │ │ │ ├── constant │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.gas │ │ │ ├── thermophysicalProperties.liquid │ │ │ ├── turbulenceProperties.gas │ │ │ └── turbulenceProperties.liquid │ │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict.orig │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── laminar │ │ ├── bubbleColumn │ │ ├── 0 │ │ │ ├── T.air │ │ │ ├── T.water │ │ │ ├── Theta │ │ │ ├── U.air │ │ │ ├── U.water │ │ │ ├── alpha.air.orig │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.water │ │ │ ├── turbulenceProperties.air │ │ │ └── turbulenceProperties.water │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── bubbleColumnEvaporating │ │ ├── 0 │ │ │ ├── CO.gas │ │ │ ├── H2O.gas │ │ │ ├── H2O.liquid │ │ │ ├── T.gas │ │ │ ├── T.liquid │ │ │ ├── U.gas │ │ │ ├── U.liquid │ │ │ ├── Ydefault │ │ │ ├── air.gas │ │ │ ├── air.liquid │ │ │ ├── alpha.gas.orig │ │ │ ├── alpha.liquid.orig │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.gas │ │ │ ├── thermophysicalProperties.liquid │ │ │ ├── turbulenceProperties.gas │ │ │ └── turbulenceProperties.liquid │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── continuityFunctions │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── bubbleColumnEvaporatingDissolving │ │ ├── 0 │ │ │ ├── T.gas │ │ │ ├── T.liquid │ │ │ ├── U.gas │ │ │ ├── U.liquid │ │ │ ├── air.gas │ │ │ ├── air.liquid │ │ │ ├── alpha.gas.orig │ │ │ ├── alpha.liquid.orig │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ ├── water.gas │ │ │ └── water.liquid │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.gas │ │ │ ├── thermophysicalProperties.liquid │ │ │ ├── turbulenceProperties.gas │ │ │ └── turbulenceProperties.liquid │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── bubbleColumnIATE │ │ ├── 0 │ │ │ ├── T.air │ │ │ ├── T.water │ │ │ ├── Theta │ │ │ ├── U.air │ │ │ ├── U.water │ │ │ ├── alpha.air.orig │ │ │ ├── kappai.air │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.water │ │ │ ├── turbulenceProperties.air │ │ │ └── turbulenceProperties.water │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── fluidisedBed │ │ ├── 0 │ │ │ ├── T.air │ │ │ ├── T.particles │ │ │ ├── Theta.particles │ │ │ ├── U.air │ │ │ ├── U.particles │ │ │ ├── alpha.particles.orig │ │ │ ├── alphat.particles │ │ │ ├── epsilon.air │ │ │ ├── k.air │ │ │ ├── nut.air │ │ │ ├── nut.particles │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.particles │ │ │ ├── turbulenceProperties.air │ │ │ └── turbulenceProperties.particles │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── injection │ │ ├── 0 │ │ │ ├── T.air │ │ │ ├── T.water │ │ │ ├── U.air │ │ │ ├── U.water │ │ │ ├── alpha.air.orig │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── fvOptions │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.water │ │ │ ├── turbulenceProperties.air │ │ │ └── turbulenceProperties.water │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ │ ├── mixerVessel2D │ │ ├── 0 │ │ │ ├── T.air │ │ │ ├── T.water │ │ │ ├── Theta │ │ │ ├── U.air │ │ │ ├── U.water │ │ │ ├── alpha.air │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── MRFProperties │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.water │ │ │ ├── turbulenceProperties.air │ │ │ └── turbulenceProperties.water │ │ ├── makeMesh │ │ └── system │ │ │ ├── blockMeshDict.m4 │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── topoSetDict │ │ └── steamInjection │ │ ├── 0 │ │ ├── T.steam │ │ ├── T.water │ │ ├── U.steam │ │ ├── U.water │ │ ├── alpha.steam │ │ ├── alpha.water │ │ ├── nut.water │ │ ├── p │ │ ├── p_rgh │ │ ├── water.steam │ │ └── water.water │ │ ├── constant │ │ ├── fvOptions │ │ ├── g │ │ ├── phaseProperties │ │ ├── thermophysicalProperties.steam │ │ ├── thermophysicalProperties.water │ │ ├── turbulenceProperties.steam │ │ └── turbulenceProperties.water │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── deltaTvalues │ │ ├── fvSchemes │ │ └── fvSolution ├── twoLiquidMixingFoam │ └── lockExchange │ │ ├── 0 │ │ ├── U │ │ ├── alpha.sludge.orig │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ ├── g │ │ ├── transportProperties │ │ └── turbulenceProperties │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict └── twoPhaseEulerFoam │ ├── LES │ └── bubbleColumn │ │ ├── 0 │ │ ├── T.air │ │ ├── T.water │ │ ├── Theta │ │ ├── U.air │ │ ├── U.water │ │ ├── alpha.air.orig │ │ ├── alphat.air │ │ ├── alphat.water │ │ ├── epsilon.air │ │ ├── epsilon.water │ │ ├── k.air │ │ ├── k.water │ │ ├── nut.air │ │ ├── nut.water │ │ ├── p │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ ├── g │ │ ├── phaseProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.water │ │ ├── turbulenceProperties.air │ │ └── turbulenceProperties.water │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ ├── RAS │ ├── bubbleColumn │ │ ├── 0 │ │ │ ├── T.air │ │ │ ├── T.water │ │ │ ├── Theta │ │ │ ├── U.air │ │ │ ├── U.water │ │ │ ├── alpha.air.orig │ │ │ ├── alphat.air │ │ │ ├── alphat.water │ │ │ ├── epsilon.air │ │ │ ├── epsilon.water │ │ │ ├── epsilonm │ │ │ ├── k.air │ │ │ ├── k.water │ │ │ ├── km │ │ │ ├── nut.air │ │ │ ├── nut.water │ │ │ ├── p │ │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ │ ├── g │ │ │ ├── phaseProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.water │ │ │ ├── turbulenceProperties.air │ │ │ └── turbulenceProperties.water │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── setFieldsDict │ └── fluidisedBed │ │ ├── 0 │ │ ├── T.air │ │ ├── T.particles │ │ ├── Theta.particles │ │ ├── U.air │ │ ├── U.particles │ │ ├── alpha.air.orig │ │ ├── alpha.particles.orig │ │ ├── alphat.air │ │ ├── alphat.particles │ │ ├── epsilon.air │ │ ├── k.air │ │ ├── nut.air │ │ ├── nut.particles │ │ ├── p │ │ └── p_rgh │ │ ├── Allrun │ │ ├── constant │ │ ├── g │ │ ├── phaseProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.particles │ │ ├── turbulenceProperties.air │ │ └── turbulenceProperties.particles │ │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ └── laminar │ ├── bubbleColumn │ ├── 0 │ │ ├── T.air │ │ ├── T.water │ │ ├── Theta │ │ ├── U.air │ │ ├── U.water │ │ ├── alpha.air.orig │ │ ├── p │ │ └── p_rgh │ ├── Allrun │ ├── constant │ │ ├── g │ │ ├── phaseProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.water │ │ ├── turbulenceProperties.air │ │ └── turbulenceProperties.water │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ ├── bubbleColumnIATE │ ├── 0 │ │ ├── T.air │ │ ├── T.water │ │ ├── Theta │ │ ├── U.air │ │ ├── U.water │ │ ├── alpha.air.orig │ │ ├── kappai.air │ │ ├── p │ │ └── p_rgh │ ├── Allrun │ ├── constant │ │ ├── g │ │ ├── phaseProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.water │ │ ├── turbulenceProperties.air │ │ └── turbulenceProperties.water │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ ├── fluidisedBed │ ├── 0 │ │ ├── T.air │ │ ├── T.particles │ │ ├── Theta.particles │ │ ├── U.air │ │ ├── U.particles │ │ ├── alpha.particles.orig │ │ ├── alphat.particles │ │ ├── epsilon.air │ │ ├── k.air │ │ ├── nut.air │ │ ├── nut.particles │ │ ├── p │ │ └── p_rgh │ ├── Allrun │ ├── constant │ │ ├── g │ │ ├── phaseProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.particles │ │ ├── turbulenceProperties.air │ │ └── turbulenceProperties.particles │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ ├── injection │ ├── 0 │ │ ├── T.air │ │ ├── T.water │ │ ├── U.air │ │ ├── U.water │ │ ├── alpha.air.orig │ │ ├── p │ │ └── p_rgh │ ├── Allrun │ ├── constant │ │ ├── fvOptions │ │ ├── g │ │ ├── phaseProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.water │ │ ├── turbulenceProperties.air │ │ └── turbulenceProperties.water │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict │ └── mixerVessel2D │ ├── 0 │ ├── T.air │ ├── T.water │ ├── Theta │ ├── U.air │ ├── U.water │ ├── alpha.air │ ├── p │ └── p_rgh │ ├── Allrun │ ├── constant │ ├── MRFProperties │ ├── g │ ├── phaseProperties │ ├── thermophysicalProperties.air │ ├── thermophysicalProperties.water │ ├── turbulenceProperties.air │ └── turbulenceProperties.water │ ├── makeMesh │ └── system │ ├── blockMeshDict.m4 │ ├── controlDict │ ├── fvSchemes │ ├── fvSolution │ └── topoSetDict ├── resources └── geometry │ ├── DTC-scaled.stl.gz │ ├── blob.stl.gz │ ├── bullet.stl.gz │ ├── cyclone.stl.gz │ ├── flange.stl.gz │ ├── membrane-boundaries.stl.gz │ ├── membrane-membrane.stl.gz │ ├── motorBike.obj.gz │ ├── propeller.obj.gz │ ├── wigley-scaled-oriented.stl.gz │ └── wigley.stl.gz └── stressAnalysis ├── solidDisplacementFoam └── plateHole │ ├── 0 │ ├── D │ └── T │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── mechanicalProperties │ └── thermalProperties │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ ├── fvSolution │ └── singleGraph └── solidEquilibriumDisplacementFoam └── beamEndLoad ├── 0 ├── D └── p ├── constant ├── mechanicalProperties └── thermalProperties └── system ├── blockMeshDict ├── controlDict ├── fvSchemes └── fvSolution /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/.gitconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/.gitignore -------------------------------------------------------------------------------- /Commons/deelx/deelx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/Commons/deelx/deelx.h -------------------------------------------------------------------------------- /Commons/pcre/manifest/pcre-7.0-lib.ver: -------------------------------------------------------------------------------- 1 | Pcre-7.0: Developer files 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenFoam7.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/OpenFoam7.sln -------------------------------------------------------------------------------- /OpenFoam7/cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/OpenFoam7/cpp.hint -------------------------------------------------------------------------------- /OpenFoam7/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/OpenFoam7/main.cxx -------------------------------------------------------------------------------- /OpenFoam7/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/OpenFoam7/test1.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/README.md -------------------------------------------------------------------------------- /TnbBase/TnbBase.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbBase/TnbBase.vcxproj -------------------------------------------------------------------------------- /TnbBase/TnbLib/Base/OSspecific/MSWindows/dummyPrintStack.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TnbBase/TnbLib/Base/containers/Identifiers/Keyed/Keyed.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /TnbBase/TnbLib/Base/containers/Lists/IndirectList/IndirectList.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /TnbBase/TnbLib/Base/global/constants/constants.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /TnbBase/TnbLib/Base/include/removeCaseOptions.lxx: -------------------------------------------------------------------------------- 1 | argList::initValidTables::clear(); -------------------------------------------------------------------------------- /TnbBase/TnbLib/Base/meshes/primitiveShapes/triangle/triangle.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /TnbBase/TnbLib/Base/primitives/one/one.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /TnbBase/TnbLib/Base/primitives/zero/zero.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /TnbBase/cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbBase/cpp.hint -------------------------------------------------------------------------------- /TnbBase/include/CSV.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbBase/include/CSV.hxx -------------------------------------------------------------------------------- /TnbBase/include/Map.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbBase/include/Map.hxx -------------------------------------------------------------------------------- /TnbBase/include/PCG.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbBase/include/PCG.hxx -------------------------------------------------------------------------------- /TnbBase/include/SVD.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbBase/include/SVD.hxx -------------------------------------------------------------------------------- /TnbBase/include/cut.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbBase/include/cut.hxx -------------------------------------------------------------------------------- /TnbBase/include/int.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbBase/include/int.hxx -------------------------------------------------------------------------------- /TnbBase/include/nil.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbBase/include/nil.hxx -------------------------------------------------------------------------------- /TnbBase/include/one.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbBase/include/one.hxx -------------------------------------------------------------------------------- /TnbBase/include/ops.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbBase/include/ops.hxx -------------------------------------------------------------------------------- /TnbBase/include/rampI.hxx: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /TnbBase/include/tmp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbBase/include/tmp.hxx -------------------------------------------------------------------------------- /TnbBase/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbBase/main.cxx -------------------------------------------------------------------------------- /TnbBase/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbBase/test1.txt -------------------------------------------------------------------------------- /TnbDynamicMesh/cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbDynamicMesh/cpp.hint -------------------------------------------------------------------------------- /TnbFiniteVolume/TnbLib/FiniteVolume/cfdTools/general/include/createMRF.lxx: -------------------------------------------------------------------------------- 1 | IOMRFZoneList MRF(mesh); 2 | -------------------------------------------------------------------------------- /TnbFiniteVolume/include/createMRF.lxx: -------------------------------------------------------------------------------- 1 | IOMRFZoneList MRF(mesh); 2 | -------------------------------------------------------------------------------- /TnbFiniteVolume/include/createPisoControl.lxx: -------------------------------------------------------------------------------- 1 | pisoControl piso(mesh); 2 | -------------------------------------------------------------------------------- /TnbFoamyMesh/TnbLib/foamyMesh/foamyQuadMesh/indexedFace2D.cxx: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /TnbFoamyMesh/TnbLib/foamyMesh/foamyQuadMesh/indexedVertex2D.cxx: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /TnbFvMesh/TnbLib/FvMesh/fileFormats/Make/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TnbFvMesh/TnbLib/FvMesh/surfMesh/surfaceFormats/stl/STLtriangle.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /TnbFvMesh/TnbLib/FvMesh/triSurface/tools/labelledTri/labelledTri.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /TnbFvMesh/cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbFvMesh/cpp.hint -------------------------------------------------------------------------------- /TnbODE/TnbLib/ODE/ODESystem/ODESystem.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /TnbODE/TnbODE.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbODE/TnbODE.vcxproj -------------------------------------------------------------------------------- /TnbODE/include/SIBS.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbODE/include/SIBS.hxx -------------------------------------------------------------------------------- /TnbParallel/cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbParallel/cpp.hint -------------------------------------------------------------------------------- /TnbSampling/cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbSampling/cpp.hint -------------------------------------------------------------------------------- /TnbSampling/include/sampledSetsTemplatesI.hxx: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /TnbThermoPhysicalModels/include/EtoHthermo.hxx: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /TnbThermoPhysicalModels/include/HtoEthermo.hxx: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | -------------------------------------------------------------------------------- /TnbThermoPhysicalModels/include/TroeFallOffFunctionI.hxx: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /TnbWave/TnbWave.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/TnbWave/TnbWave.vcxproj -------------------------------------------------------------------------------- /applications/test/graphXi/Test-graphXi/r.ps: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/utilities/mesh/conversion/sammToFoam/starMesh.lxx: -------------------------------------------------------------------------------- 1 | #include "sammMesh.hxx" -------------------------------------------------------------------------------- /etc/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/README.org -------------------------------------------------------------------------------- /etc/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/bashrc -------------------------------------------------------------------------------- /etc/cellModels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/cellModels -------------------------------------------------------------------------------- /etc/codeTemplates/BC/Make/files: -------------------------------------------------------------------------------- 1 | COMPILED.C 2 | 3 | LIB = $(FOAM_USER_LIBBIN)/libNAME 4 | -------------------------------------------------------------------------------- /etc/codeTemplates/app/Make/files: -------------------------------------------------------------------------------- 1 | NAME.C 2 | 3 | EXE = $(FOAM_USER_APPBIN)/NAME 4 | -------------------------------------------------------------------------------- /etc/config.csh/aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/config.csh/aliases -------------------------------------------------------------------------------- /etc/config.csh/ensight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/config.csh/ensight -------------------------------------------------------------------------------- /etc/config.csh/mpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/config.csh/mpi -------------------------------------------------------------------------------- /etc/config.csh/paraview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/config.csh/paraview -------------------------------------------------------------------------------- /etc/config.csh/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/config.csh/settings -------------------------------------------------------------------------------- /etc/config.csh/unset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/config.csh/unset -------------------------------------------------------------------------------- /etc/config.sh/CGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/config.sh/CGAL -------------------------------------------------------------------------------- /etc/config.sh/aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/config.sh/aliases -------------------------------------------------------------------------------- /etc/config.sh/compiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/config.sh/compiler -------------------------------------------------------------------------------- /etc/config.sh/ensight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/config.sh/ensight -------------------------------------------------------------------------------- /etc/config.sh/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/config.sh/functions -------------------------------------------------------------------------------- /etc/config.sh/metis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/config.sh/metis -------------------------------------------------------------------------------- /etc/config.sh/mpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/config.sh/mpi -------------------------------------------------------------------------------- /etc/config.sh/paraview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/config.sh/paraview -------------------------------------------------------------------------------- /etc/config.sh/scotch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/config.sh/scotch -------------------------------------------------------------------------------- /etc/config.sh/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/config.sh/settings -------------------------------------------------------------------------------- /etc/config.sh/unset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/config.sh/unset -------------------------------------------------------------------------------- /etc/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/controlDict -------------------------------------------------------------------------------- /etc/cshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/cshrc -------------------------------------------------------------------------------- /etc/paraFoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/etc/paraFoam -------------------------------------------------------------------------------- /etc/templates/closedVolume/constant/triSurface/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/templates/closedVolumeRotating/constant/triSurface/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/templates/compressibleInflowOutflow/constant/triSurface/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/templates/inflowOutflow/constant/triSurface/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/templates/inflowOutflowRotating/constant/triSurface/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/templates/singleFluidCHT/constant/triSurface/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/AMIMethod.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/AMIMethod.hxx -------------------------------------------------------------------------------- /include/AMIMethodI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/AMIMethodI.hxx -------------------------------------------------------------------------------- /include/Airy.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Airy.hxx -------------------------------------------------------------------------------- /include/Ar.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Ar.hxx -------------------------------------------------------------------------------- /include/ArI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ArI.hxx -------------------------------------------------------------------------------- /include/BSpline.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/BSpline.hxx -------------------------------------------------------------------------------- /include/BSplineEdge.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/BSplineEdge.hxx -------------------------------------------------------------------------------- /include/Base_Module.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Base_Module.hxx -------------------------------------------------------------------------------- /include/Basic.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Basic.hxx -------------------------------------------------------------------------------- /include/BasicI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/BasicI.hxx -------------------------------------------------------------------------------- /include/BinSum.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/BinSum.hxx -------------------------------------------------------------------------------- /include/BinSumI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/BinSumI.hxx -------------------------------------------------------------------------------- /include/BirdCarreau.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/BirdCarreau.hxx -------------------------------------------------------------------------------- /include/Boussinesq.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Boussinesq.hxx -------------------------------------------------------------------------------- /include/BoussinesqI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/BoussinesqI.hxx -------------------------------------------------------------------------------- /include/C.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C.hxx -------------------------------------------------------------------------------- /include/C10H22.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C10H22.hxx -------------------------------------------------------------------------------- /include/C10H22I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C10H22I.hxx -------------------------------------------------------------------------------- /include/C12H26.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C12H26.hxx -------------------------------------------------------------------------------- /include/C12H26I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C12H26I.hxx -------------------------------------------------------------------------------- /include/C13H28.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C13H28.hxx -------------------------------------------------------------------------------- /include/C13H28I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C13H28I.hxx -------------------------------------------------------------------------------- /include/C14H30.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C14H30.hxx -------------------------------------------------------------------------------- /include/C14H30I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C14H30I.hxx -------------------------------------------------------------------------------- /include/C16H34.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C16H34.hxx -------------------------------------------------------------------------------- /include/C16H34I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C16H34I.hxx -------------------------------------------------------------------------------- /include/C2H5OH.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C2H5OH.hxx -------------------------------------------------------------------------------- /include/C2H5OHI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C2H5OHI.hxx -------------------------------------------------------------------------------- /include/C2H6.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C2H6.hxx -------------------------------------------------------------------------------- /include/C2H6I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C2H6I.hxx -------------------------------------------------------------------------------- /include/C2H6O.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C2H6O.hxx -------------------------------------------------------------------------------- /include/C2H6OI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C2H6OI.hxx -------------------------------------------------------------------------------- /include/C3H6O.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C3H6O.hxx -------------------------------------------------------------------------------- /include/C3H6OI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C3H6OI.hxx -------------------------------------------------------------------------------- /include/C3H8.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C3H8.hxx -------------------------------------------------------------------------------- /include/C3H8I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C3H8I.hxx -------------------------------------------------------------------------------- /include/C4H10O.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C4H10O.hxx -------------------------------------------------------------------------------- /include/C4H10OI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C4H10OI.hxx -------------------------------------------------------------------------------- /include/C6H14.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C6H14.hxx -------------------------------------------------------------------------------- /include/C6H14I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C6H14I.hxx -------------------------------------------------------------------------------- /include/C6H6.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C6H6.hxx -------------------------------------------------------------------------------- /include/C6H6I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C6H6I.hxx -------------------------------------------------------------------------------- /include/C7H16.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C7H16.hxx -------------------------------------------------------------------------------- /include/C7H16I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C7H16I.hxx -------------------------------------------------------------------------------- /include/C7H8.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C7H8.hxx -------------------------------------------------------------------------------- /include/C7H8I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C7H8I.hxx -------------------------------------------------------------------------------- /include/C8H10.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C8H10.hxx -------------------------------------------------------------------------------- /include/C8H10I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C8H10I.hxx -------------------------------------------------------------------------------- /include/C8H18.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C8H18.hxx -------------------------------------------------------------------------------- /include/C8H18I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C8H18I.hxx -------------------------------------------------------------------------------- /include/C9H20.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C9H20.hxx -------------------------------------------------------------------------------- /include/C9H20I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/C9H20I.hxx -------------------------------------------------------------------------------- /include/CH3OH.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CH3OH.hxx -------------------------------------------------------------------------------- /include/CH3OHI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CH3OHI.hxx -------------------------------------------------------------------------------- /include/CH4N2O.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CH4N2O.hxx -------------------------------------------------------------------------------- /include/CH4N2OI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CH4N2OI.hxx -------------------------------------------------------------------------------- /include/CMULES.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CMULES.hxx -------------------------------------------------------------------------------- /include/CMULESI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CMULESI.hxx -------------------------------------------------------------------------------- /include/CSV.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CSV.hxx -------------------------------------------------------------------------------- /include/CSVI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CSVI.hxx -------------------------------------------------------------------------------- /include/CV2D.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CV2D.hxx -------------------------------------------------------------------------------- /include/CV2DI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CV2DI.hxx -------------------------------------------------------------------------------- /include/CaCO3.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CaCO3.hxx -------------------------------------------------------------------------------- /include/Callback.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Callback.hxx -------------------------------------------------------------------------------- /include/CallbackI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CallbackI.hxx -------------------------------------------------------------------------------- /include/Casson.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Casson.hxx -------------------------------------------------------------------------------- /include/Chung.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Chung.hxx -------------------------------------------------------------------------------- /include/Circulator.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Circulator.hxx -------------------------------------------------------------------------------- /include/CirculatorI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CirculatorI.hxx -------------------------------------------------------------------------------- /include/CoBlended.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CoBlended.hxx -------------------------------------------------------------------------------- /include/CodedSource.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CodedSource.hxx -------------------------------------------------------------------------------- /include/Constant.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Constant.hxx -------------------------------------------------------------------------------- /include/ConstantI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ConstantI.hxx -------------------------------------------------------------------------------- /include/CorrectPhi.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CorrectPhi.hxx -------------------------------------------------------------------------------- /include/CorrectPhiI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CorrectPhiI.hxx -------------------------------------------------------------------------------- /include/CourantNo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CourantNo.hxx -------------------------------------------------------------------------------- /include/CourantNo.lxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/CourantNo.lxx -------------------------------------------------------------------------------- /include/DAC.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/DAC.hxx -------------------------------------------------------------------------------- /include/DACI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/DACI.hxx -------------------------------------------------------------------------------- /include/DICSmoother.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/DICSmoother.hxx -------------------------------------------------------------------------------- /include/DLList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/DLList.hxx -------------------------------------------------------------------------------- /include/DLListBase.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/DLListBase.hxx -------------------------------------------------------------------------------- /include/DLListBaseI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/DLListBaseI.hxx -------------------------------------------------------------------------------- /include/DLPtrList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/DLPtrList.hxx -------------------------------------------------------------------------------- /include/DRG.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/DRG.hxx -------------------------------------------------------------------------------- /include/DRGEP.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/DRGEP.hxx -------------------------------------------------------------------------------- /include/DRGEPI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/DRGEPI.hxx -------------------------------------------------------------------------------- /include/DRGI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/DRGI.hxx -------------------------------------------------------------------------------- /include/Dual.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Dual.hxx -------------------------------------------------------------------------------- /include/DualI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/DualI.hxx -------------------------------------------------------------------------------- /include/DynamicID.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/DynamicID.hxx -------------------------------------------------------------------------------- /include/DynamicList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/DynamicList.hxx -------------------------------------------------------------------------------- /include/EDC.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/EDC.hxx -------------------------------------------------------------------------------- /include/EDCI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/EDCI.hxx -------------------------------------------------------------------------------- /include/EFA.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/EFA.hxx -------------------------------------------------------------------------------- /include/EFAI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/EFAI.hxx -------------------------------------------------------------------------------- /include/ETAB.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ETAB.hxx -------------------------------------------------------------------------------- /include/ETABI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ETABI.hxx -------------------------------------------------------------------------------- /include/EdgeMap.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/EdgeMap.hxx -------------------------------------------------------------------------------- /include/Ek.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Ek.hxx -------------------------------------------------------------------------------- /include/EtoHthermo.hxx: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /include/EtoHthermo.lxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/EtoHthermo.lxx -------------------------------------------------------------------------------- /include/Euler.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Euler.hxx -------------------------------------------------------------------------------- /include/EulerSI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/EulerSI.hxx -------------------------------------------------------------------------------- /include/Explicit.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Explicit.hxx -------------------------------------------------------------------------------- /include/ExplicitI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ExplicitI.hxx -------------------------------------------------------------------------------- /include/FIFOStack.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/FIFOStack.hxx -------------------------------------------------------------------------------- /include/FSD.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/FSD.hxx -------------------------------------------------------------------------------- /include/FSDI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/FSDI.hxx -------------------------------------------------------------------------------- /include/Field.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Field.hxx -------------------------------------------------------------------------------- /include/FieldField.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/FieldField.hxx -------------------------------------------------------------------------------- /include/FieldFieldI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/FieldFieldI.hxx -------------------------------------------------------------------------------- /include/FieldFields.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/FieldFields.hxx -------------------------------------------------------------------------------- /include/FieldI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/FieldI.hxx -------------------------------------------------------------------------------- /include/FieldM.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/FieldM.hxx -------------------------------------------------------------------------------- /include/FitData.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/FitData.hxx -------------------------------------------------------------------------------- /include/FitDataI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/FitDataI.hxx -------------------------------------------------------------------------------- /include/FixedList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/FixedList.hxx -------------------------------------------------------------------------------- /include/FixedListI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/FixedListI.hxx -------------------------------------------------------------------------------- /include/FreeStream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/FreeStream.hxx -------------------------------------------------------------------------------- /include/FreeStreamI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/FreeStreamI.hxx -------------------------------------------------------------------------------- /include/Function1.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Function1.hxx -------------------------------------------------------------------------------- /include/Function1I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Function1I.hxx -------------------------------------------------------------------------------- /include/GAMGSolver.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/GAMGSolver.hxx -------------------------------------------------------------------------------- /include/Gamma.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Gamma.hxx -------------------------------------------------------------------------------- /include/GeoMesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/GeoMesh.hxx -------------------------------------------------------------------------------- /include/Giesekus.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Giesekus.hxx -------------------------------------------------------------------------------- /include/GiesekusI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/GiesekusI.hxx -------------------------------------------------------------------------------- /include/Gulders.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Gulders.hxx -------------------------------------------------------------------------------- /include/GuldersEGR.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/GuldersEGR.hxx -------------------------------------------------------------------------------- /include/H2O.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/H2O.hxx -------------------------------------------------------------------------------- /include/H2OI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/H2OI.hxx -------------------------------------------------------------------------------- /include/Hash.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Hash.hxx -------------------------------------------------------------------------------- /include/HashSet.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/HashSet.hxx -------------------------------------------------------------------------------- /include/HashSetI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/HashSetI.hxx -------------------------------------------------------------------------------- /include/HashTable.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/HashTable.hxx -------------------------------------------------------------------------------- /include/HashTableI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/HashTableI.hxx -------------------------------------------------------------------------------- /include/Hasher.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Hasher.hxx -------------------------------------------------------------------------------- /include/HasherInt.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/HasherInt.hxx -------------------------------------------------------------------------------- /include/Histogram.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Histogram.hxx -------------------------------------------------------------------------------- /include/HistogramI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/HistogramI.hxx -------------------------------------------------------------------------------- /include/HtoEthermo.hxx: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | -------------------------------------------------------------------------------- /include/HtoEthermo.lxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/HtoEthermo.lxx -------------------------------------------------------------------------------- /include/IC8H18.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IC8H18.hxx -------------------------------------------------------------------------------- /include/IC8H18I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IC8H18I.hxx -------------------------------------------------------------------------------- /include/IDDESDelta.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IDDESDelta.hxx -------------------------------------------------------------------------------- /include/IDEA.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IDEA.hxx -------------------------------------------------------------------------------- /include/IDEAI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IDEAI.hxx -------------------------------------------------------------------------------- /include/IDLList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IDLList.hxx -------------------------------------------------------------------------------- /include/IFstream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IFstream.hxx -------------------------------------------------------------------------------- /include/ILList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ILList.hxx -------------------------------------------------------------------------------- /include/ILList_Imp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ILList_Imp.hxx -------------------------------------------------------------------------------- /include/INew.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/INew.hxx -------------------------------------------------------------------------------- /include/IOField.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IOField.hxx -------------------------------------------------------------------------------- /include/IOFieldI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IOFieldI.hxx -------------------------------------------------------------------------------- /include/IOList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IOList.hxx -------------------------------------------------------------------------------- /include/IOListI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IOListI.hxx -------------------------------------------------------------------------------- /include/IOMap.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IOMap.hxx -------------------------------------------------------------------------------- /include/IOMapI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IOMapI.hxx -------------------------------------------------------------------------------- /include/IOPosition.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IOPosition.hxx -------------------------------------------------------------------------------- /include/IOPositionI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IOPositionI.hxx -------------------------------------------------------------------------------- /include/IOPtrList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IOPtrList.hxx -------------------------------------------------------------------------------- /include/IOPtrListI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IOPtrListI.hxx -------------------------------------------------------------------------------- /include/IOmanip.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IOmanip.hxx -------------------------------------------------------------------------------- /include/IOobject.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IOobject.hxx -------------------------------------------------------------------------------- /include/IOobjectI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IOobjectI.hxx -------------------------------------------------------------------------------- /include/IOprobes.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IOprobes.hxx -------------------------------------------------------------------------------- /include/IOstream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IOstream.hxx -------------------------------------------------------------------------------- /include/IOstreams.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IOstreams.hxx -------------------------------------------------------------------------------- /include/IPstream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/IPstream.hxx -------------------------------------------------------------------------------- /include/ISAT.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ISAT.hxx -------------------------------------------------------------------------------- /include/ISATI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ISATI.hxx -------------------------------------------------------------------------------- /include/ISLList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ISLList.hxx -------------------------------------------------------------------------------- /include/ISstream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ISstream.hxx -------------------------------------------------------------------------------- /include/ISstreamI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ISstreamI.hxx -------------------------------------------------------------------------------- /include/ITstream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ITstream.hxx -------------------------------------------------------------------------------- /include/Identity.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Identity.hxx -------------------------------------------------------------------------------- /include/Implicit.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Implicit.hxx -------------------------------------------------------------------------------- /include/ImplicitI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ImplicitI.hxx -------------------------------------------------------------------------------- /include/InfoProxy.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/InfoProxy.hxx -------------------------------------------------------------------------------- /include/Istream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Istream.hxx -------------------------------------------------------------------------------- /include/Keyed.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Keyed.hxx -------------------------------------------------------------------------------- /include/KeyedI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/KeyedI.hxx -------------------------------------------------------------------------------- /include/Kmesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Kmesh.hxx -------------------------------------------------------------------------------- /include/KmeshI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/KmeshI.hxx -------------------------------------------------------------------------------- /include/LESModel.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LESModel.hxx -------------------------------------------------------------------------------- /include/LESModelI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LESModelI.hxx -------------------------------------------------------------------------------- /include/LESdelta.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LESdelta.hxx -------------------------------------------------------------------------------- /include/LESfilter.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LESfilter.hxx -------------------------------------------------------------------------------- /include/LIFOStack.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LIFOStack.hxx -------------------------------------------------------------------------------- /include/LLTMatrix.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LLTMatrix.hxx -------------------------------------------------------------------------------- /include/LLTMatrixI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LLTMatrixI.hxx -------------------------------------------------------------------------------- /include/LList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LList.hxx -------------------------------------------------------------------------------- /include/LListIO_Imp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LListIO_Imp.hxx -------------------------------------------------------------------------------- /include/LList_Imp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LList_Imp.hxx -------------------------------------------------------------------------------- /include/LPtrList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LPtrList.hxx -------------------------------------------------------------------------------- /include/LRR.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LRR.hxx -------------------------------------------------------------------------------- /include/LRRI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LRRI.hxx -------------------------------------------------------------------------------- /include/LUST.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LUST.hxx -------------------------------------------------------------------------------- /include/Lambda2.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Lambda2.hxx -------------------------------------------------------------------------------- /include/LienCubicKE.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LienCubicKE.hxx -------------------------------------------------------------------------------- /include/LiftForce.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LiftForce.hxx -------------------------------------------------------------------------------- /include/LiftForceI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LiftForceI.hxx -------------------------------------------------------------------------------- /include/LimitFuncs.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LimitFuncs.hxx -------------------------------------------------------------------------------- /include/LimitFuncsI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/LimitFuncsI.hxx -------------------------------------------------------------------------------- /include/Limited.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Limited.hxx -------------------------------------------------------------------------------- /include/Limited01.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Limited01.hxx -------------------------------------------------------------------------------- /include/List.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/List.hxx -------------------------------------------------------------------------------- /include/ListI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ListI.hxx -------------------------------------------------------------------------------- /include/ListIO_Imp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ListIO_Imp.hxx -------------------------------------------------------------------------------- /include/ListListOps.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ListListOps.hxx -------------------------------------------------------------------------------- /include/ListLoopM.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ListLoopM.hxx -------------------------------------------------------------------------------- /include/ListOps.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ListOps.hxx -------------------------------------------------------------------------------- /include/ListOpsI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ListOpsI.hxx -------------------------------------------------------------------------------- /include/List_Imp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/List_Imp.hxx -------------------------------------------------------------------------------- /include/Lun.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Lun.hxx -------------------------------------------------------------------------------- /include/MB.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MB.hxx -------------------------------------------------------------------------------- /include/MBI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MBI.hxx -------------------------------------------------------------------------------- /include/MPPICCloud.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MPPICCloud.hxx -------------------------------------------------------------------------------- /include/MPPICCloudI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MPPICCloudI.hxx -------------------------------------------------------------------------------- /include/MPPICParcel.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MPPICParcel.hxx -------------------------------------------------------------------------------- /include/MRFZone.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MRFZone.hxx -------------------------------------------------------------------------------- /include/MRFZoneI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MRFZoneI.hxx -------------------------------------------------------------------------------- /include/MRFZoneList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MRFZoneList.hxx -------------------------------------------------------------------------------- /include/MSwindows.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MSwindows.hxx -------------------------------------------------------------------------------- /include/MULES.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MULES.hxx -------------------------------------------------------------------------------- /include/MULESI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MULESI.hxx -------------------------------------------------------------------------------- /include/MUSCL.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MUSCL.hxx -------------------------------------------------------------------------------- /include/MachNo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MachNo.hxx -------------------------------------------------------------------------------- /include/Map.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Map.hxx -------------------------------------------------------------------------------- /include/MapFvFields.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MapFvFields.hxx -------------------------------------------------------------------------------- /include/Matrix.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Matrix.hxx -------------------------------------------------------------------------------- /include/MatrixBlock.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MatrixBlock.hxx -------------------------------------------------------------------------------- /include/MatrixI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MatrixI.hxx -------------------------------------------------------------------------------- /include/MatrixSpace.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MatrixSpace.hxx -------------------------------------------------------------------------------- /include/Matrix_Imp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Matrix_Imp.hxx -------------------------------------------------------------------------------- /include/Maxwell.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Maxwell.hxx -------------------------------------------------------------------------------- /include/MaxwellI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MaxwellI.hxx -------------------------------------------------------------------------------- /include/MeshObject.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MeshObject.hxx -------------------------------------------------------------------------------- /include/MeshWave.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MeshWave.hxx -------------------------------------------------------------------------------- /include/MeshWaveI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MeshWaveI.hxx -------------------------------------------------------------------------------- /include/Minmod.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Minmod.hxx -------------------------------------------------------------------------------- /include/Moment.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Moment.hxx -------------------------------------------------------------------------------- /include/MomentI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/MomentI.hxx -------------------------------------------------------------------------------- /include/N2.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/N2.hxx -------------------------------------------------------------------------------- /include/N2I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/N2I.hxx -------------------------------------------------------------------------------- /include/NASCore.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NASCore.hxx -------------------------------------------------------------------------------- /include/NSRDSfunc0.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NSRDSfunc0.hxx -------------------------------------------------------------------------------- /include/NSRDSfunc1.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NSRDSfunc1.hxx -------------------------------------------------------------------------------- /include/NSRDSfunc14.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NSRDSfunc14.hxx -------------------------------------------------------------------------------- /include/NSRDSfunc2.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NSRDSfunc2.hxx -------------------------------------------------------------------------------- /include/NSRDSfunc3.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NSRDSfunc3.hxx -------------------------------------------------------------------------------- /include/NSRDSfunc4.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NSRDSfunc4.hxx -------------------------------------------------------------------------------- /include/NSRDSfunc5.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NSRDSfunc5.hxx -------------------------------------------------------------------------------- /include/NSRDSfunc6.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NSRDSfunc6.hxx -------------------------------------------------------------------------------- /include/NSRDSfunc7.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NSRDSfunc7.hxx -------------------------------------------------------------------------------- /include/NVDTVD.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NVDTVD.hxx -------------------------------------------------------------------------------- /include/NVDVTVDV.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NVDVTVDV.hxx -------------------------------------------------------------------------------- /include/NamedEnum.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NamedEnum.hxx -------------------------------------------------------------------------------- /include/NamedEnumI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NamedEnumI.hxx -------------------------------------------------------------------------------- /include/Newmark.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Newmark.hxx -------------------------------------------------------------------------------- /include/NoBreakup.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NoBreakup.hxx -------------------------------------------------------------------------------- /include/NoBreakupI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NoBreakupI.hxx -------------------------------------------------------------------------------- /include/NoCollision.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NoCollision.hxx -------------------------------------------------------------------------------- /include/NoDamping.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NoDamping.hxx -------------------------------------------------------------------------------- /include/NoDampingI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NoDampingI.hxx -------------------------------------------------------------------------------- /include/NoInflow.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NoInflow.hxx -------------------------------------------------------------------------------- /include/NoInflowI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NoInflowI.hxx -------------------------------------------------------------------------------- /include/NoInjection.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NoInjection.hxx -------------------------------------------------------------------------------- /include/NoIsotropy.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NoIsotropy.hxx -------------------------------------------------------------------------------- /include/NoIsotropyI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NoIsotropyI.hxx -------------------------------------------------------------------------------- /include/NoPacking.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NoPacking.hxx -------------------------------------------------------------------------------- /include/NoPackingI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/NoPackingI.hxx -------------------------------------------------------------------------------- /include/OBJstream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/OBJstream.hxx -------------------------------------------------------------------------------- /include/ODESolver.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ODESolver.hxx -------------------------------------------------------------------------------- /include/ODESolverI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ODESolverI.hxx -------------------------------------------------------------------------------- /include/ODESystem.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ODESystem.hxx -------------------------------------------------------------------------------- /include/ODE_Module.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ODE_Module.hxx -------------------------------------------------------------------------------- /include/OFstream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/OFstream.hxx -------------------------------------------------------------------------------- /include/OPstream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/OPstream.hxx -------------------------------------------------------------------------------- /include/OSHA1stream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/OSHA1stream.hxx -------------------------------------------------------------------------------- /include/OSPRE.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/OSPRE.hxx -------------------------------------------------------------------------------- /include/OSspecific.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/OSspecific.hxx -------------------------------------------------------------------------------- /include/OSstream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/OSstream.hxx -------------------------------------------------------------------------------- /include/OSstreamI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/OSstreamI.hxx -------------------------------------------------------------------------------- /include/OneConstant.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/OneConstant.hxx -------------------------------------------------------------------------------- /include/Ostream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Ostream.hxx -------------------------------------------------------------------------------- /include/P1.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/P1.hxx -------------------------------------------------------------------------------- /include/PBiCCCG.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PBiCCCG.hxx -------------------------------------------------------------------------------- /include/PBiCCCGI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PBiCCCGI.hxx -------------------------------------------------------------------------------- /include/PBiCG.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PBiCG.hxx -------------------------------------------------------------------------------- /include/PBiCGStab.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PBiCGStab.hxx -------------------------------------------------------------------------------- /include/PBiCICG.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PBiCICG.hxx -------------------------------------------------------------------------------- /include/PBiCICGI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PBiCICGI.hxx -------------------------------------------------------------------------------- /include/PCG.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PCG.hxx -------------------------------------------------------------------------------- /include/PCICG.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PCICG.hxx -------------------------------------------------------------------------------- /include/PCICGI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PCICGI.hxx -------------------------------------------------------------------------------- /include/PFA.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PFA.hxx -------------------------------------------------------------------------------- /include/PFAI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PFAI.hxx -------------------------------------------------------------------------------- /include/Pa.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Pa.hxx -------------------------------------------------------------------------------- /include/PaSR.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PaSR.hxx -------------------------------------------------------------------------------- /include/PaSRI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PaSRI.hxx -------------------------------------------------------------------------------- /include/PackedList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PackedList.hxx -------------------------------------------------------------------------------- /include/PackedListI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PackedListI.hxx -------------------------------------------------------------------------------- /include/Pair.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Pair.hxx -------------------------------------------------------------------------------- /include/PairModel.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PairModel.hxx -------------------------------------------------------------------------------- /include/PairModelI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PairModelI.hxx -------------------------------------------------------------------------------- /include/PatchTools.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PatchTools.hxx -------------------------------------------------------------------------------- /include/PecletNo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PecletNo.hxx -------------------------------------------------------------------------------- /include/Phi.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Phi.hxx -------------------------------------------------------------------------------- /include/PhiScheme.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PhiScheme.hxx -------------------------------------------------------------------------------- /include/PhiSchemeI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PhiSchemeI.hxx -------------------------------------------------------------------------------- /include/PilchErdman.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PilchErdman.hxx -------------------------------------------------------------------------------- /include/Polynomial.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Polynomial.hxx -------------------------------------------------------------------------------- /include/PrintTable.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PrintTable.hxx -------------------------------------------------------------------------------- /include/PrintTableI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PrintTableI.hxx -------------------------------------------------------------------------------- /include/Pstream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Pstream.hxx -------------------------------------------------------------------------------- /include/PtrList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PtrList.hxx -------------------------------------------------------------------------------- /include/PtrListI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PtrListI.hxx -------------------------------------------------------------------------------- /include/PtrList_Imp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PtrList_Imp.hxx -------------------------------------------------------------------------------- /include/PtrMap.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/PtrMap.hxx -------------------------------------------------------------------------------- /include/Px.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Px.hxx -------------------------------------------------------------------------------- /include/Pxyz.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Pxyz.hxx -------------------------------------------------------------------------------- /include/Py.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Py.hxx -------------------------------------------------------------------------------- /include/Pz.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Pz.hxx -------------------------------------------------------------------------------- /include/Q.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Q.hxx -------------------------------------------------------------------------------- /include/QRMatrix.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/QRMatrix.hxx -------------------------------------------------------------------------------- /include/QRMatrixI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/QRMatrixI.hxx -------------------------------------------------------------------------------- /include/QUICK.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/QUICK.hxx -------------------------------------------------------------------------------- /include/QUICKV.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/QUICKV.hxx -------------------------------------------------------------------------------- /include/Qdot.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Qdot.hxx -------------------------------------------------------------------------------- /include/RASModel.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/RASModel.hxx -------------------------------------------------------------------------------- /include/RASModelI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/RASModelI.hxx -------------------------------------------------------------------------------- /include/RKCK45.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/RKCK45.hxx -------------------------------------------------------------------------------- /include/RKDP45.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/RKDP45.hxx -------------------------------------------------------------------------------- /include/RKF45.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/RKF45.hxx -------------------------------------------------------------------------------- /include/RNGkEpsilon.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/RNGkEpsilon.hxx -------------------------------------------------------------------------------- /include/Ra.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Ra.hxx -------------------------------------------------------------------------------- /include/Random.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Random.hxx -------------------------------------------------------------------------------- /include/RandomI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/RandomI.hxx -------------------------------------------------------------------------------- /include/Reaction.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Reaction.hxx -------------------------------------------------------------------------------- /include/ReactionI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ReactionI.hxx -------------------------------------------------------------------------------- /include/ReadFields.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ReadFields.hxx -------------------------------------------------------------------------------- /include/ReadFieldsI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ReadFieldsI.hxx -------------------------------------------------------------------------------- /include/ReadHex.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ReadHex.hxx -------------------------------------------------------------------------------- /include/ReadHexI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ReadHexI.hxx -------------------------------------------------------------------------------- /include/Rebound.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Rebound.hxx -------------------------------------------------------------------------------- /include/ReboundI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ReboundI.hxx -------------------------------------------------------------------------------- /include/ReitzKHRT.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ReitzKHRT.hxx -------------------------------------------------------------------------------- /include/ReitzKHRTI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ReitzKHRTI.hxx -------------------------------------------------------------------------------- /include/Relaxation.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Relaxation.hxx -------------------------------------------------------------------------------- /include/RelaxationI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/RelaxationI.hxx -------------------------------------------------------------------------------- /include/Roots.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Roots.hxx -------------------------------------------------------------------------------- /include/RootsI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/RootsI.hxx -------------------------------------------------------------------------------- /include/RowVector.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/RowVector.hxx -------------------------------------------------------------------------------- /include/RowVectorI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/RowVectorI.hxx -------------------------------------------------------------------------------- /include/Rs.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Rs.hxx -------------------------------------------------------------------------------- /include/Rx.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Rx.hxx -------------------------------------------------------------------------------- /include/Rxyz.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Rxyz.hxx -------------------------------------------------------------------------------- /include/Ry.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Ry.hxx -------------------------------------------------------------------------------- /include/Ryxz.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Ryxz.hxx -------------------------------------------------------------------------------- /include/Rz.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Rz.hxx -------------------------------------------------------------------------------- /include/Rzyx.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Rzyx.hxx -------------------------------------------------------------------------------- /include/SDA.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SDA.hxx -------------------------------------------------------------------------------- /include/SFCD.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SFCD.hxx -------------------------------------------------------------------------------- /include/SHA1.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SHA1.hxx -------------------------------------------------------------------------------- /include/SHA1Digest.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SHA1Digest.hxx -------------------------------------------------------------------------------- /include/SHA1I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SHA1I.hxx -------------------------------------------------------------------------------- /include/SHF.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SHF.hxx -------------------------------------------------------------------------------- /include/SHFI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SHFI.hxx -------------------------------------------------------------------------------- /include/SIBS.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SIBS.hxx -------------------------------------------------------------------------------- /include/SLGThermo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SLGThermo.hxx -------------------------------------------------------------------------------- /include/SLList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SLList.hxx -------------------------------------------------------------------------------- /include/SLListBase.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SLListBase.hxx -------------------------------------------------------------------------------- /include/SLListBaseI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SLListBaseI.hxx -------------------------------------------------------------------------------- /include/SLPtrList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SLPtrList.hxx -------------------------------------------------------------------------------- /include/SRFForce.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SRFForce.hxx -------------------------------------------------------------------------------- /include/SRFForceI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SRFForceI.hxx -------------------------------------------------------------------------------- /include/SRFModel.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SRFModel.hxx -------------------------------------------------------------------------------- /include/SSG.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SSG.hxx -------------------------------------------------------------------------------- /include/SSGI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SSGI.hxx -------------------------------------------------------------------------------- /include/STARCDCore.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/STARCDCore.hxx -------------------------------------------------------------------------------- /include/STLpoint.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/STLpoint.hxx -------------------------------------------------------------------------------- /include/STLtriangle.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/STLtriangle.hxx -------------------------------------------------------------------------------- /include/SVD.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SVD.hxx -------------------------------------------------------------------------------- /include/SVDI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SVDI.hxx -------------------------------------------------------------------------------- /include/Scale.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Scale.hxx -------------------------------------------------------------------------------- /include/ScaleI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ScaleI.hxx -------------------------------------------------------------------------------- /include/Scale_Imp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Scale_Imp.hxx -------------------------------------------------------------------------------- /include/ScaledForce.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ScaledForce.hxx -------------------------------------------------------------------------------- /include/Sine.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Sine.hxx -------------------------------------------------------------------------------- /include/SineI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SineI.hxx -------------------------------------------------------------------------------- /include/Sine_Imp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Sine_Imp.hxx -------------------------------------------------------------------------------- /include/Smagorinsky.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Smagorinsky.hxx -------------------------------------------------------------------------------- /include/SprayParcel.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SprayParcel.hxx -------------------------------------------------------------------------------- /include/Square.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Square.hxx -------------------------------------------------------------------------------- /include/SquareI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SquareI.hxx -------------------------------------------------------------------------------- /include/Square_Imp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Square_Imp.hxx -------------------------------------------------------------------------------- /include/StCorr.lxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/StCorr.lxx -------------------------------------------------------------------------------- /include/Stochastic.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Stochastic.hxx -------------------------------------------------------------------------------- /include/StochasticI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/StochasticI.hxx -------------------------------------------------------------------------------- /include/Stokes.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Stokes.hxx -------------------------------------------------------------------------------- /include/Stokes2.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Stokes2.hxx -------------------------------------------------------------------------------- /include/Stokes5.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Stokes5.hxx -------------------------------------------------------------------------------- /include/StokesI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/StokesI.hxx -------------------------------------------------------------------------------- /include/SubField.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SubField.hxx -------------------------------------------------------------------------------- /include/SubFieldI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SubFieldI.hxx -------------------------------------------------------------------------------- /include/SubList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SubList.hxx -------------------------------------------------------------------------------- /include/SubListI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SubListI.hxx -------------------------------------------------------------------------------- /include/SuperBee.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/SuperBee.hxx -------------------------------------------------------------------------------- /include/Swap.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Swap.hxx -------------------------------------------------------------------------------- /include/Switch.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Switch.hxx -------------------------------------------------------------------------------- /include/TAB.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/TAB.hxx -------------------------------------------------------------------------------- /include/TABI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/TABI.hxx -------------------------------------------------------------------------------- /include/Table.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Table.hxx -------------------------------------------------------------------------------- /include/TableBase.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/TableBase.hxx -------------------------------------------------------------------------------- /include/TableBaseI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/TableBaseI.hxx -------------------------------------------------------------------------------- /include/TableFile.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/TableFile.hxx -------------------------------------------------------------------------------- /include/TableI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/TableI.hxx -------------------------------------------------------------------------------- /include/Time.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Time.hxx -------------------------------------------------------------------------------- /include/TimePaths.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/TimePaths.hxx -------------------------------------------------------------------------------- /include/TimeState.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/TimeState.hxx -------------------------------------------------------------------------------- /include/Trapezoid.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Trapezoid.hxx -------------------------------------------------------------------------------- /include/TroeFallOffFunctionI.hxx: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /include/Tuple2.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Tuple2.hxx -------------------------------------------------------------------------------- /include/UIDLList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/UIDLList.hxx -------------------------------------------------------------------------------- /include/UILList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/UILList.hxx -------------------------------------------------------------------------------- /include/UIPstream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/UIPstream.hxx -------------------------------------------------------------------------------- /include/UList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/UList.hxx -------------------------------------------------------------------------------- /include/UListI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/UListI.hxx -------------------------------------------------------------------------------- /include/UList_Imp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/UList_Imp.hxx -------------------------------------------------------------------------------- /include/UMIST.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/UMIST.hxx -------------------------------------------------------------------------------- /include/UOPstream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/UOPstream.hxx -------------------------------------------------------------------------------- /include/UOprocess.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/UOprocess.hxx -------------------------------------------------------------------------------- /include/UPstream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/UPstream.hxx -------------------------------------------------------------------------------- /include/UPtrList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/UPtrList.hxx -------------------------------------------------------------------------------- /include/UPtrListI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/UPtrListI.hxx -------------------------------------------------------------------------------- /include/UautoPtr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/UautoPtr.hxx -------------------------------------------------------------------------------- /include/UautoPtrI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/UautoPtrI.hxx -------------------------------------------------------------------------------- /include/WALE.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/WALE.hxx -------------------------------------------------------------------------------- /include/WALEI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/WALEI.hxx -------------------------------------------------------------------------------- /include/WallModel.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/WallModel.hxx -------------------------------------------------------------------------------- /include/Wallis.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/Wallis.hxx -------------------------------------------------------------------------------- /include/ZoneIDs.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ZoneIDs.hxx -------------------------------------------------------------------------------- /include/ZoneMesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ZoneMesh.hxx -------------------------------------------------------------------------------- /include/ZoneMeshI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ZoneMeshI.hxx -------------------------------------------------------------------------------- /include/aC10H7CH3.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/aC10H7CH3.hxx -------------------------------------------------------------------------------- /include/abort.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/abort.hxx -------------------------------------------------------------------------------- /include/absolute.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/absolute.hxx -------------------------------------------------------------------------------- /include/add.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/add.hxx -------------------------------------------------------------------------------- /include/adjustPhi.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/adjustPhi.hxx -------------------------------------------------------------------------------- /include/age.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/age.hxx -------------------------------------------------------------------------------- /include/allReduce.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/allReduce.hxx -------------------------------------------------------------------------------- /include/arcEdge.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/arcEdge.hxx -------------------------------------------------------------------------------- /include/argList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/argList.hxx -------------------------------------------------------------------------------- /include/argListI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/argListI.hxx -------------------------------------------------------------------------------- /include/ash.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ash.hxx -------------------------------------------------------------------------------- /include/autoPtr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/autoPtr.hxx -------------------------------------------------------------------------------- /include/autoPtrI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/autoPtrI.hxx -------------------------------------------------------------------------------- /include/automatic.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/automatic.hxx -------------------------------------------------------------------------------- /include/azizChen.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/azizChen.hxx -------------------------------------------------------------------------------- /include/bC10H7CH3.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/bC10H7CH3.hxx -------------------------------------------------------------------------------- /include/bMesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/bMesh.hxx -------------------------------------------------------------------------------- /include/binary.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/binary.hxx -------------------------------------------------------------------------------- /include/blended.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/blended.hxx -------------------------------------------------------------------------------- /include/block.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/block.hxx -------------------------------------------------------------------------------- /include/blockEdge.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/blockEdge.hxx -------------------------------------------------------------------------------- /include/blockFace.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/blockFace.hxx -------------------------------------------------------------------------------- /include/blockI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/blockI.hxx -------------------------------------------------------------------------------- /include/blockList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/blockList.hxx -------------------------------------------------------------------------------- /include/blockMesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/blockMesh.hxx -------------------------------------------------------------------------------- /include/bool.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/bool.hxx -------------------------------------------------------------------------------- /include/boolList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/boolList.hxx -------------------------------------------------------------------------------- /include/bound.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/bound.hxx -------------------------------------------------------------------------------- /include/boundBox.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/boundBox.hxx -------------------------------------------------------------------------------- /include/boundBoxI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/boundBoxI.hxx -------------------------------------------------------------------------------- /include/boxToCell.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/boxToCell.hxx -------------------------------------------------------------------------------- /include/boxToFace.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/boxToFace.hxx -------------------------------------------------------------------------------- /include/calcEk.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/calcEk.hxx -------------------------------------------------------------------------------- /include/calcEntry.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/calcEntry.hxx -------------------------------------------------------------------------------- /include/cell.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cell.hxx -------------------------------------------------------------------------------- /include/cellCuts.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cellCuts.hxx -------------------------------------------------------------------------------- /include/cellI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cellI.hxx -------------------------------------------------------------------------------- /include/cellInfo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cellInfo.hxx -------------------------------------------------------------------------------- /include/cellInfoI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cellInfoI.hxx -------------------------------------------------------------------------------- /include/cellList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cellList.hxx -------------------------------------------------------------------------------- /include/cellModel.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cellModel.hxx -------------------------------------------------------------------------------- /include/cellSet.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cellSet.hxx -------------------------------------------------------------------------------- /include/cellShape.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cellShape.hxx -------------------------------------------------------------------------------- /include/cellTable.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cellTable.hxx -------------------------------------------------------------------------------- /include/cellZone.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cellZone.hxx -------------------------------------------------------------------------------- /include/char.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/char.hxx -------------------------------------------------------------------------------- /include/className.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/className.hxx -------------------------------------------------------------------------------- /include/clock.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/clock.hxx -------------------------------------------------------------------------------- /include/clockTime.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/clockTime.hxx -------------------------------------------------------------------------------- /include/cloud.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cloud.hxx -------------------------------------------------------------------------------- /include/cloudInfo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cloudInfo.hxx -------------------------------------------------------------------------------- /include/coalCloud.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/coalCloud.hxx -------------------------------------------------------------------------------- /include/codedBase.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/codedBase.hxx -------------------------------------------------------------------------------- /include/complex.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/complex.hxx -------------------------------------------------------------------------------- /include/complexI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/complexI.hxx -------------------------------------------------------------------------------- /include/constants.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/constants.hxx -------------------------------------------------------------------------------- /include/coordSet.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/coordSet.hxx -------------------------------------------------------------------------------- /include/coulomb.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/coulomb.hxx -------------------------------------------------------------------------------- /include/cpuTime.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cpuTime.hxx -------------------------------------------------------------------------------- /include/createMRF.lxx: -------------------------------------------------------------------------------- 1 | IOMRFZoneList MRF(mesh); 2 | -------------------------------------------------------------------------------- /include/createPhi.lxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/createPhi.lxx -------------------------------------------------------------------------------- /include/createPisoControl.lxx: -------------------------------------------------------------------------------- 1 | pisoControl piso(mesh); 2 | -------------------------------------------------------------------------------- /include/createUf.lxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/createUf.lxx -------------------------------------------------------------------------------- /include/cubic.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cubic.hxx -------------------------------------------------------------------------------- /include/cubicEqn.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cubicEqn.hxx -------------------------------------------------------------------------------- /include/cubicEqnI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cubicEqnI.hxx -------------------------------------------------------------------------------- /include/cuboid.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cuboid.hxx -------------------------------------------------------------------------------- /include/cuboidI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cuboidI.hxx -------------------------------------------------------------------------------- /include/curve.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/curve.hxx -------------------------------------------------------------------------------- /include/cut.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cut.hxx -------------------------------------------------------------------------------- /include/cutI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/cutI.hxx -------------------------------------------------------------------------------- /include/damping.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/damping.hxx -------------------------------------------------------------------------------- /include/data.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/data.hxx -------------------------------------------------------------------------------- /include/ddt.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ddt.hxx -------------------------------------------------------------------------------- /include/ddtScheme.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ddtScheme.hxx -------------------------------------------------------------------------------- /include/deelx.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/deelx.hxx -------------------------------------------------------------------------------- /include/diffusion.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/diffusion.hxx -------------------------------------------------------------------------------- /include/directAMI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/directAMI.hxx -------------------------------------------------------------------------------- /include/direction.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/direction.hxx -------------------------------------------------------------------------------- /include/div.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/div.hxx -------------------------------------------------------------------------------- /include/divScheme.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/divScheme.hxx -------------------------------------------------------------------------------- /include/downwind.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/downwind.hxx -------------------------------------------------------------------------------- /include/dsmcCloud.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/dsmcCloud.hxx -------------------------------------------------------------------------------- /include/edge.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/edge.hxx -------------------------------------------------------------------------------- /include/edgeI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/edgeI.hxx -------------------------------------------------------------------------------- /include/edgeList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/edgeList.hxx -------------------------------------------------------------------------------- /include/edgeMesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/edgeMesh.hxx -------------------------------------------------------------------------------- /include/edgeMeshI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/edgeMeshI.hxx -------------------------------------------------------------------------------- /include/enstrophy.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/enstrophy.hxx -------------------------------------------------------------------------------- /include/entry.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/entry.hxx -------------------------------------------------------------------------------- /include/error.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/error.hxx -------------------------------------------------------------------------------- /include/etcFiles.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/etcFiles.hxx -------------------------------------------------------------------------------- /include/exchangeI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/exchangeI.hxx -------------------------------------------------------------------------------- /include/face.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/face.hxx -------------------------------------------------------------------------------- /include/faceI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/faceI.hxx -------------------------------------------------------------------------------- /include/faceList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/faceList.hxx -------------------------------------------------------------------------------- /include/faceSet.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/faceSet.hxx -------------------------------------------------------------------------------- /include/faceZone.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/faceZone.hxx -------------------------------------------------------------------------------- /include/fft.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fft.hxx -------------------------------------------------------------------------------- /include/fileName.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fileName.hxx -------------------------------------------------------------------------------- /include/fileNameI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fileNameI.hxx -------------------------------------------------------------------------------- /include/fileStat.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fileStat.hxx -------------------------------------------------------------------------------- /include/fixedTrim.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fixedTrim.hxx -------------------------------------------------------------------------------- /include/flipOp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/flipOp.hxx -------------------------------------------------------------------------------- /include/flowType.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/flowType.hxx -------------------------------------------------------------------------------- /include/force.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/force.hxx -------------------------------------------------------------------------------- /include/forceList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/forceList.hxx -------------------------------------------------------------------------------- /include/forceSuSp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/forceSuSp.hxx -------------------------------------------------------------------------------- /include/forces.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/forces.hxx -------------------------------------------------------------------------------- /include/function.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/function.hxx -------------------------------------------------------------------------------- /include/fv.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fv.hxx -------------------------------------------------------------------------------- /include/fvCFD.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvCFD.hxx -------------------------------------------------------------------------------- /include/fvDOM.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvDOM.hxx -------------------------------------------------------------------------------- /include/fvDOMI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvDOMI.hxx -------------------------------------------------------------------------------- /include/fvMatrix.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvMatrix.hxx -------------------------------------------------------------------------------- /include/fvMatrixI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvMatrixI.hxx -------------------------------------------------------------------------------- /include/fvMesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvMesh.hxx -------------------------------------------------------------------------------- /include/fvMeshI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvMeshI.hxx -------------------------------------------------------------------------------- /include/fvOption.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvOption.hxx -------------------------------------------------------------------------------- /include/fvOptionI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvOptionI.hxx -------------------------------------------------------------------------------- /include/fvOptions.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvOptions.hxx -------------------------------------------------------------------------------- /include/fvPatch.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvPatch.hxx -------------------------------------------------------------------------------- /include/fvPatchI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvPatchI.hxx -------------------------------------------------------------------------------- /include/fvSchemes.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvSchemes.hxx -------------------------------------------------------------------------------- /include/fvc.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvc.hxx -------------------------------------------------------------------------------- /include/fvcCurl.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvcCurl.hxx -------------------------------------------------------------------------------- /include/fvcCurlI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvcCurlI.hxx -------------------------------------------------------------------------------- /include/fvcD2dt2.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvcD2dt2.hxx -------------------------------------------------------------------------------- /include/fvcD2dt2I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvcD2dt2I.hxx -------------------------------------------------------------------------------- /include/fvcDdt.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvcDdt.hxx -------------------------------------------------------------------------------- /include/fvcDdtI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvcDdtI.hxx -------------------------------------------------------------------------------- /include/fvcDiv.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvcDiv.hxx -------------------------------------------------------------------------------- /include/fvcDivI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvcDivI.hxx -------------------------------------------------------------------------------- /include/fvcFlux.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvcFlux.hxx -------------------------------------------------------------------------------- /include/fvcFluxI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvcFluxI.hxx -------------------------------------------------------------------------------- /include/fvcGrad.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvcGrad.hxx -------------------------------------------------------------------------------- /include/fvcGradI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvcGradI.hxx -------------------------------------------------------------------------------- /include/fvcSmooth.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvcSmooth.hxx -------------------------------------------------------------------------------- /include/fvcSnGrad.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvcSnGrad.hxx -------------------------------------------------------------------------------- /include/fvcSup.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvcSup.hxx -------------------------------------------------------------------------------- /include/fvcSupI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvcSupI.hxx -------------------------------------------------------------------------------- /include/fvm.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvm.hxx -------------------------------------------------------------------------------- /include/fvmD2dt2.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvmD2dt2.hxx -------------------------------------------------------------------------------- /include/fvmD2dt2I.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvmD2dt2I.hxx -------------------------------------------------------------------------------- /include/fvmDdt.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvmDdt.hxx -------------------------------------------------------------------------------- /include/fvmDdtI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvmDdtI.hxx -------------------------------------------------------------------------------- /include/fvmDiv.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvmDiv.hxx -------------------------------------------------------------------------------- /include/fvmDivI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvmDivI.hxx -------------------------------------------------------------------------------- /include/fvmSup.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvmSup.hxx -------------------------------------------------------------------------------- /include/fvmSupI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/fvmSupI.hxx -------------------------------------------------------------------------------- /include/gaussGrad.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/gaussGrad.hxx -------------------------------------------------------------------------------- /include/general.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/general.hxx -------------------------------------------------------------------------------- /include/geompack.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/geompack.hxx -------------------------------------------------------------------------------- /include/gh.lxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/gh.lxx -------------------------------------------------------------------------------- /include/grad.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/grad.hxx -------------------------------------------------------------------------------- /include/graph.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/graph.hxx -------------------------------------------------------------------------------- /include/greyMean.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/greyMean.hxx -------------------------------------------------------------------------------- /include/gzstream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/gzstream.hxx -------------------------------------------------------------------------------- /include/harmonic.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/harmonic.hxx -------------------------------------------------------------------------------- /include/heThermo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/heThermo.hxx -------------------------------------------------------------------------------- /include/heThermoI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/heThermoI.hxx -------------------------------------------------------------------------------- /include/hexRef8.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/hexRef8.hxx -------------------------------------------------------------------------------- /include/iC3H8O.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/iC3H8O.hxx -------------------------------------------------------------------------------- /include/iC3H8OI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/iC3H8OI.hxx -------------------------------------------------------------------------------- /include/ifEntry.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ifEntry.hxx -------------------------------------------------------------------------------- /include/ifeqEntry.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ifeqEntry.hxx -------------------------------------------------------------------------------- /include/ignite.lxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ignite.lxx -------------------------------------------------------------------------------- /include/ignition.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ignition.hxx -------------------------------------------------------------------------------- /include/instant.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/instant.hxx -------------------------------------------------------------------------------- /include/int.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/int.hxx -------------------------------------------------------------------------------- /include/int32.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/int32.hxx -------------------------------------------------------------------------------- /include/int64.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/int64.hxx -------------------------------------------------------------------------------- /include/isotropic.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/isotropic.hxx -------------------------------------------------------------------------------- /include/jobInfo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/jobInfo.hxx -------------------------------------------------------------------------------- /include/joint.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/joint.hxx -------------------------------------------------------------------------------- /include/jointBody.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/jointBody.hxx -------------------------------------------------------------------------------- /include/jointI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/jointI.hxx -------------------------------------------------------------------------------- /include/joints.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/joints.hxx -------------------------------------------------------------------------------- /include/kEpsilon.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/kEpsilon.hxx -------------------------------------------------------------------------------- /include/kEpsilonI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/kEpsilonI.hxx -------------------------------------------------------------------------------- /include/kEqn.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/kEqn.hxx -------------------------------------------------------------------------------- /include/kEqnI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/kEqnI.hxx -------------------------------------------------------------------------------- /include/kOmega.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/kOmega.hxx -------------------------------------------------------------------------------- /include/kOmegaI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/kOmegaI.hxx -------------------------------------------------------------------------------- /include/kOmegaSST.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/kOmegaSST.hxx -------------------------------------------------------------------------------- /include/keyType.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/keyType.hxx -------------------------------------------------------------------------------- /include/keyTypeI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/keyTypeI.hxx -------------------------------------------------------------------------------- /include/kkLOmega.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/kkLOmega.hxx -------------------------------------------------------------------------------- /include/label.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/label.hxx -------------------------------------------------------------------------------- /include/labelBits.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/labelBits.hxx -------------------------------------------------------------------------------- /include/labelList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/labelList.hxx -------------------------------------------------------------------------------- /include/labelPair.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/labelPair.hxx -------------------------------------------------------------------------------- /include/laminar.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/laminar.hxx -------------------------------------------------------------------------------- /include/lduMatrix.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/lduMatrix.hxx -------------------------------------------------------------------------------- /include/lduMesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/lduMesh.hxx -------------------------------------------------------------------------------- /include/levelSet.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/levelSet.hxx -------------------------------------------------------------------------------- /include/levelSetI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/levelSetI.hxx -------------------------------------------------------------------------------- /include/limitWith.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/limitWith.hxx -------------------------------------------------------------------------------- /include/line.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/line.hxx -------------------------------------------------------------------------------- /include/lineCell.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/lineCell.hxx -------------------------------------------------------------------------------- /include/lineEdge.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/lineEdge.hxx -------------------------------------------------------------------------------- /include/lineFace.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/lineFace.hxx -------------------------------------------------------------------------------- /include/lineI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/lineI.hxx -------------------------------------------------------------------------------- /include/linear.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/linear.hxx -------------------------------------------------------------------------------- /include/linearEqn.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/linearEqn.hxx -------------------------------------------------------------------------------- /include/localMax.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/localMax.hxx -------------------------------------------------------------------------------- /include/localMin.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/localMin.hxx -------------------------------------------------------------------------------- /include/log.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/log.hxx -------------------------------------------------------------------------------- /include/logFiles.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/logFiles.hxx -------------------------------------------------------------------------------- /include/macros.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/macros.hxx -------------------------------------------------------------------------------- /include/mag.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/mag.hxx -------------------------------------------------------------------------------- /include/magSqr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/magSqr.hxx -------------------------------------------------------------------------------- /include/makeGraph.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/makeGraph.hxx -------------------------------------------------------------------------------- /include/mapClouds.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/mapClouds.hxx -------------------------------------------------------------------------------- /include/md.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/md.hxx -------------------------------------------------------------------------------- /include/memInfo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/memInfo.hxx -------------------------------------------------------------------------------- /include/meshTools.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/meshTools.hxx -------------------------------------------------------------------------------- /include/midPoint.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/midPoint.hxx -------------------------------------------------------------------------------- /include/minData.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/minData.hxx -------------------------------------------------------------------------------- /include/minDataI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/minDataI.hxx -------------------------------------------------------------------------------- /include/molecule.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/molecule.hxx -------------------------------------------------------------------------------- /include/moleculeI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/moleculeI.hxx -------------------------------------------------------------------------------- /include/nC3H8O.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/nC3H8O.hxx -------------------------------------------------------------------------------- /include/nC3H8OI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/nC3H8OI.hxx -------------------------------------------------------------------------------- /include/nbrToCell.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/nbrToCell.hxx -------------------------------------------------------------------------------- /include/negEntry.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/negEntry.hxx -------------------------------------------------------------------------------- /include/nil.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/nil.hxx -------------------------------------------------------------------------------- /include/noDecomp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/noDecomp.hxx -------------------------------------------------------------------------------- /include/noFilm.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/noFilm.hxx -------------------------------------------------------------------------------- /include/noScaling.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/noScaling.hxx -------------------------------------------------------------------------------- /include/noScatter.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/noScatter.hxx -------------------------------------------------------------------------------- /include/noSoot.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/noSoot.hxx -------------------------------------------------------------------------------- /include/noThermo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/noThermo.hxx -------------------------------------------------------------------------------- /include/noiseFFT.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/noiseFFT.hxx -------------------------------------------------------------------------------- /include/normal.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/normal.hxx -------------------------------------------------------------------------------- /include/nullJoint.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/nullJoint.hxx -------------------------------------------------------------------------------- /include/objectHit.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/objectHit.hxx -------------------------------------------------------------------------------- /include/objectMap.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/objectMap.hxx -------------------------------------------------------------------------------- /include/ode.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ode.hxx -------------------------------------------------------------------------------- /include/odeI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/odeI.hxx -------------------------------------------------------------------------------- /include/one.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/one.hxx -------------------------------------------------------------------------------- /include/oneField.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/oneField.hxx -------------------------------------------------------------------------------- /include/oneFieldI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/oneFieldI.hxx -------------------------------------------------------------------------------- /include/oneI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/oneI.hxx -------------------------------------------------------------------------------- /include/ops.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ops.hxx -------------------------------------------------------------------------------- /include/pTraits.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/pTraits.hxx -------------------------------------------------------------------------------- /include/parRun.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/parRun.hxx -------------------------------------------------------------------------------- /include/particle.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/particle.hxx -------------------------------------------------------------------------------- /include/particleI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/particleI.hxx -------------------------------------------------------------------------------- /include/patchWave.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/patchWave.hxx -------------------------------------------------------------------------------- /include/plane.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/plane.hxx -------------------------------------------------------------------------------- /include/point.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/point.hxx -------------------------------------------------------------------------------- /include/point2D.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/point2D.hxx -------------------------------------------------------------------------------- /include/pointData.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/pointData.hxx -------------------------------------------------------------------------------- /include/pointFile.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/pointFile.hxx -------------------------------------------------------------------------------- /include/pointHit.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/pointHit.hxx -------------------------------------------------------------------------------- /include/pointMesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/pointMesh.hxx -------------------------------------------------------------------------------- /include/pointSet.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/pointSet.hxx -------------------------------------------------------------------------------- /include/pointZone.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/pointZone.hxx -------------------------------------------------------------------------------- /include/points.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/points.hxx -------------------------------------------------------------------------------- /include/polyLine.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/polyLine.hxx -------------------------------------------------------------------------------- /include/polyMesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/polyMesh.hxx -------------------------------------------------------------------------------- /include/polyPatch.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/polyPatch.hxx -------------------------------------------------------------------------------- /include/potential.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/potential.hxx -------------------------------------------------------------------------------- /include/powerLaw.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/powerLaw.hxx -------------------------------------------------------------------------------- /include/powerLawI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/powerLawI.hxx -------------------------------------------------------------------------------- /include/pressure.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/pressure.hxx -------------------------------------------------------------------------------- /include/probes.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/probes.hxx -------------------------------------------------------------------------------- /include/probesI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/probesI.hxx -------------------------------------------------------------------------------- /include/products.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/products.hxx -------------------------------------------------------------------------------- /include/psiThermo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/psiThermo.hxx -------------------------------------------------------------------------------- /include/pyramid.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/pyramid.hxx -------------------------------------------------------------------------------- /include/pyramidI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/pyramidI.hxx -------------------------------------------------------------------------------- /include/qZeta.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/qZeta.hxx -------------------------------------------------------------------------------- /include/radial.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/radial.hxx -------------------------------------------------------------------------------- /include/radiation.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/radiation.hxx -------------------------------------------------------------------------------- /include/ramp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/ramp.hxx -------------------------------------------------------------------------------- /include/rampI.hxx: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /include/randomise.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/randomise.hxx -------------------------------------------------------------------------------- /include/rawGraph.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/rawGraph.hxx -------------------------------------------------------------------------------- /include/readhRef.lxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/readhRef.lxx -------------------------------------------------------------------------------- /include/readpRef.lxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/readpRef.lxx -------------------------------------------------------------------------------- /include/refCount.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/refCount.hxx -------------------------------------------------------------------------------- /include/regExp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/regExp.hxx -------------------------------------------------------------------------------- /include/relative.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/relative.hxx -------------------------------------------------------------------------------- /include/removeCaseOptions.lxx: -------------------------------------------------------------------------------- 1 | argList::initValidTables::clear(); -------------------------------------------------------------------------------- /include/residuals.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/residuals.hxx -------------------------------------------------------------------------------- /include/rhoConst.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/rhoConst.hxx -------------------------------------------------------------------------------- /include/rhoConstI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/rhoConstI.hxx -------------------------------------------------------------------------------- /include/rhoEqn.lxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/rhoEqn.lxx -------------------------------------------------------------------------------- /include/rhoThermo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/rhoThermo.hxx -------------------------------------------------------------------------------- /include/rigid.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/rigid.hxx -------------------------------------------------------------------------------- /include/rigidBody.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/rigidBody.hxx -------------------------------------------------------------------------------- /include/rodas23.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/rodas23.hxx -------------------------------------------------------------------------------- /include/rodas34.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/rodas34.hxx -------------------------------------------------------------------------------- /include/rpm.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/rpm.hxx -------------------------------------------------------------------------------- /include/sampledSetsTemplatesI.hxx: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /include/scalar.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/scalar.hxx -------------------------------------------------------------------------------- /include/sector.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/sector.hxx -------------------------------------------------------------------------------- /include/setDeltaT.lxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/setDeltaT.lxx -------------------------------------------------------------------------------- /include/seulex.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/seulex.hxx -------------------------------------------------------------------------------- /include/shifted.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/shifted.hxx -------------------------------------------------------------------------------- /include/sigFpe.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/sigFpe.hxx -------------------------------------------------------------------------------- /include/sigInt.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/sigInt.hxx -------------------------------------------------------------------------------- /include/sigQuit.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/sigQuit.hxx -------------------------------------------------------------------------------- /include/sigSegv.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/sigSegv.hxx -------------------------------------------------------------------------------- /include/sigmoid.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/sigmoid.hxx -------------------------------------------------------------------------------- /include/solitary.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/solitary.hxx -------------------------------------------------------------------------------- /include/solution.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/solution.hxx -------------------------------------------------------------------------------- /include/sootModel.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/sootModel.hxx -------------------------------------------------------------------------------- /include/specie.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/specie.hxx -------------------------------------------------------------------------------- /include/specieI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/specieI.hxx -------------------------------------------------------------------------------- /include/sphere.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/sphere.hxx -------------------------------------------------------------------------------- /include/sphereI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/sphereI.hxx -------------------------------------------------------------------------------- /include/splitCell.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/splitCell.hxx -------------------------------------------------------------------------------- /include/stringOps.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/stringOps.hxx -------------------------------------------------------------------------------- /include/subBody.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/subBody.hxx -------------------------------------------------------------------------------- /include/subBodyI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/subBodyI.hxx -------------------------------------------------------------------------------- /include/subCycle.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/subCycle.hxx -------------------------------------------------------------------------------- /include/subtract.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/subtract.hxx -------------------------------------------------------------------------------- /include/surfMesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/surfMesh.hxx -------------------------------------------------------------------------------- /include/surfZone.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/surfZone.hxx -------------------------------------------------------------------------------- /include/sweepData.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/sweepData.hxx -------------------------------------------------------------------------------- /include/syncTools.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/syncTools.hxx -------------------------------------------------------------------------------- /include/tensor.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/tensor.hxx -------------------------------------------------------------------------------- /include/tensor2D.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/tensor2D.hxx -------------------------------------------------------------------------------- /include/tetCell.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/tetCell.hxx -------------------------------------------------------------------------------- /include/tetCellI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/tetCellI.hxx -------------------------------------------------------------------------------- /include/thermo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/thermo.hxx -------------------------------------------------------------------------------- /include/thermoI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/thermoI.hxx -------------------------------------------------------------------------------- /include/timer.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/timer.hxx -------------------------------------------------------------------------------- /include/tmp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/tmp.hxx -------------------------------------------------------------------------------- /include/tmpI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/tmpI.hxx -------------------------------------------------------------------------------- /include/tmpNrc.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/tmpNrc.hxx -------------------------------------------------------------------------------- /include/tmpNrcI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/tmpNrcI.hxx -------------------------------------------------------------------------------- /include/tnbDebug.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/tnbDebug.hxx -------------------------------------------------------------------------------- /include/tnbString.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/tnbString.hxx -------------------------------------------------------------------------------- /include/token.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/token.hxx -------------------------------------------------------------------------------- /include/tokenI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/tokenI.hxx -------------------------------------------------------------------------------- /include/tokenList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/tokenList.hxx -------------------------------------------------------------------------------- /include/token_Imp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/token_Imp.hxx -------------------------------------------------------------------------------- /include/topoSet.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/topoSet.hxx -------------------------------------------------------------------------------- /include/transform.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/transform.hxx -------------------------------------------------------------------------------- /include/triFace.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/triFace.hxx -------------------------------------------------------------------------------- /include/triFaceI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/triFaceI.hxx -------------------------------------------------------------------------------- /include/triad.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/triad.hxx -------------------------------------------------------------------------------- /include/triadI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/triadI.hxx -------------------------------------------------------------------------------- /include/triangle.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/triangle.hxx -------------------------------------------------------------------------------- /include/triangleI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/triangleI.hxx -------------------------------------------------------------------------------- /include/trimModel.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/trimModel.hxx -------------------------------------------------------------------------------- /include/turbGen.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/turbGen.hxx -------------------------------------------------------------------------------- /include/typeInfo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/typeInfo.hxx -------------------------------------------------------------------------------- /include/uLabel.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/uLabel.hxx -------------------------------------------------------------------------------- /include/uint.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/uint.hxx -------------------------------------------------------------------------------- /include/uint32.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/uint32.hxx -------------------------------------------------------------------------------- /include/uint64.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/uint64.hxx -------------------------------------------------------------------------------- /include/uniform.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/uniform.hxx -------------------------------------------------------------------------------- /include/updateUf.lxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/updateUf.lxx -------------------------------------------------------------------------------- /include/upwind.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/upwind.hxx -------------------------------------------------------------------------------- /include/v2f.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/v2f.hxx -------------------------------------------------------------------------------- /include/v2fBase.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/v2fBase.hxx -------------------------------------------------------------------------------- /include/v2fI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/v2fI.hxx -------------------------------------------------------------------------------- /include/valveBank.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/valveBank.hxx -------------------------------------------------------------------------------- /include/vanAlbada.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/vanAlbada.hxx -------------------------------------------------------------------------------- /include/vanLeer.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/vanLeer.hxx -------------------------------------------------------------------------------- /include/vector.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/vector.hxx -------------------------------------------------------------------------------- /include/vector2D.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/vector2D.hxx -------------------------------------------------------------------------------- /include/volFields.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/volFields.hxx -------------------------------------------------------------------------------- /include/volMesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/volMesh.hxx -------------------------------------------------------------------------------- /include/volRegion.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/volRegion.hxx -------------------------------------------------------------------------------- /include/vorticity.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/vorticity.hxx -------------------------------------------------------------------------------- /include/vtkMesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/vtkMesh.hxx -------------------------------------------------------------------------------- /include/vtkTopo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/vtkTopo.hxx -------------------------------------------------------------------------------- /include/walkPatch.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/walkPatch.hxx -------------------------------------------------------------------------------- /include/wallDist.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/wallDist.hxx -------------------------------------------------------------------------------- /include/wallPoint.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/wallPoint.hxx -------------------------------------------------------------------------------- /include/waveModel.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/waveModel.hxx -------------------------------------------------------------------------------- /include/wchar.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/wchar.hxx -------------------------------------------------------------------------------- /include/wedge.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/wedge.hxx -------------------------------------------------------------------------------- /include/weighted.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/weighted.hxx -------------------------------------------------------------------------------- /include/wideBand.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/wideBand.hxx -------------------------------------------------------------------------------- /include/word.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/word.hxx -------------------------------------------------------------------------------- /include/wordI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/wordI.hxx -------------------------------------------------------------------------------- /include/wordList.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/wordList.hxx -------------------------------------------------------------------------------- /include/wordRe.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/wordRe.hxx -------------------------------------------------------------------------------- /include/wordReI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/wordReI.hxx -------------------------------------------------------------------------------- /include/writeFile.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/writeFile.hxx -------------------------------------------------------------------------------- /include/writeFuns.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/writeFuns.hxx -------------------------------------------------------------------------------- /include/writeVTK.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/writeVTK.hxx -------------------------------------------------------------------------------- /include/writeVTKI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/writeVTKI.hxx -------------------------------------------------------------------------------- /include/writer.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/writer.hxx -------------------------------------------------------------------------------- /include/writerI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/writerI.hxx -------------------------------------------------------------------------------- /include/writers.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/writers.hxx -------------------------------------------------------------------------------- /include/xmgrGraph.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/xmgrGraph.hxx -------------------------------------------------------------------------------- /include/yPlus.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/yPlus.hxx -------------------------------------------------------------------------------- /include/zero.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/zero.hxx -------------------------------------------------------------------------------- /include/zeroField.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/zeroField.hxx -------------------------------------------------------------------------------- /include/zeroI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/zeroI.hxx -------------------------------------------------------------------------------- /include/zone.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/include/zone.hxx -------------------------------------------------------------------------------- /tutorials/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/tutorials/Allclean -------------------------------------------------------------------------------- /tutorials/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/tutorials/Allrun -------------------------------------------------------------------------------- /tutorials/Alltest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amir5200fx/OpenFoam7/HEAD/tutorials/Alltest -------------------------------------------------------------------------------- /tutorials/multiphase/interFoam/LES/nozzleFlow2D/0/data/Ubulk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/multiphase/interFoam/LES/nozzleFlow2D/0/data/ptrace: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------