Skip to content

Commit

Permalink
NeoFoam support laplacian operators
Browse files Browse the repository at this point in the history
  • Loading branch information
HenningScheufler committed Feb 16, 2025
1 parent e055bca commit 8e8ce47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NeoFOAM
Submodule NeoFOAM updated 25 files
+2 −2 include/NeoFOAM/core/primitives/vector.hpp
+31 −1 include/NeoFOAM/core/tokenList.hpp
+1 −1 include/NeoFOAM/fields/boundaryFields.hpp
+8 −0 include/NeoFOAM/finiteVolume/cellCentred.hpp
+12 −4 include/NeoFOAM/finiteVolume/cellCentred/boundary/volume/fixedGradient.hpp
+8 −2 include/NeoFOAM/finiteVolume/cellCentred/boundary/volume/fixedValue.hpp
+116 −0 include/NeoFOAM/finiteVolume/cellCentred/faceNormalGradient/faceNormalGradient.hpp
+49 −0 include/NeoFOAM/finiteVolume/cellCentred/faceNormalGradient/uncorrected.hpp
+4 −4 include/NeoFOAM/finiteVolume/cellCentred/interpolation/surfaceInterpolation.hpp
+2 −2 include/NeoFOAM/finiteVolume/cellCentred/operators/divOperator.hpp
+54 −0 include/NeoFOAM/finiteVolume/cellCentred/operators/gaussGreenLaplacian.hpp
+182 −0 include/NeoFOAM/finiteVolume/cellCentred/operators/laplacianOperator.hpp
+2 −0 src/CMakeLists.txt
+7 −1 src/core/tokenList.cpp
+82 −0 src/finiteVolume/cellCentred/faceNormalGradient/uncorrected.cpp
+207 −0 src/finiteVolume/cellCentred/operators/gaussGreenLaplacian.cpp
+73 −9 src/finiteVolume/cellCentred/stencil/basicGeometryScheme.cpp
+2 −2 src/finiteVolume/cellCentred/stencil/geometryScheme.cpp
+14 −17 src/mesh/unstructured/unstructuredMesh.cpp
+11 −0 test/core/tokenList.cpp
+1 −0 test/finiteVolume/CMakeLists.txt
+4 −0 test/finiteVolume/cellCentred/faceNormalGradient/CMakeLists.txt
+70 −0 test/finiteVolume/cellCentred/faceNormalGradient/uncorrected.cpp
+1 −0 test/finiteVolume/cellCentred/operator/CMakeLists.txt
+207 −0 test/finiteVolume/cellCentred/operator/laplacianOperator.cpp

0 comments on commit 8e8ce47

Please sign in to comment.