mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
lduMatrix now takes a dictionary instead of an Istream for the solver controls
- can now use dictionary substitutions and regular expressions in
system/fvSolution
- foamUpgradeFvSolution application to convert system/fvSolution
(with -test option)
motion solver syntax left as-is.
This commit is contained in:
@ -55,7 +55,7 @@ namespace Foam
|
||||
Foam::displacementSBRStressFvMotionSolver::displacementSBRStressFvMotionSolver
|
||||
(
|
||||
const polyMesh& mesh,
|
||||
Istream& msData
|
||||
Istream&
|
||||
)
|
||||
:
|
||||
fvMotionSolver(mesh),
|
||||
|
||||
@ -93,8 +93,8 @@ public:
|
||||
//- Construct from polyMesh and data stream
|
||||
displacementSBRStressFvMotionSolver
|
||||
(
|
||||
const polyMesh& mesh,
|
||||
Istream& msData
|
||||
const polyMesh&,
|
||||
Istream& msDataUnused
|
||||
);
|
||||
|
||||
|
||||
|
||||
@ -107,9 +107,10 @@ public:
|
||||
|
||||
// Constructors
|
||||
|
||||
//- Construct from polyMesh and data stream
|
||||
displacementComponentLaplacianFvMotionSolver
|
||||
(
|
||||
const polyMesh& mesh,
|
||||
const polyMesh&,
|
||||
Istream& msData
|
||||
);
|
||||
|
||||
|
||||
@ -58,7 +58,7 @@ Foam::displacementInterpolationFvMotionSolver::
|
||||
displacementInterpolationFvMotionSolver
|
||||
(
|
||||
const polyMesh& mesh,
|
||||
Istream& msData
|
||||
Istream&
|
||||
)
|
||||
:
|
||||
fvMotionSolver(mesh),
|
||||
|
||||
@ -115,10 +115,11 @@ public:
|
||||
|
||||
// Constructors
|
||||
|
||||
//- Construct from polyMesh and data stream
|
||||
displacementInterpolationFvMotionSolver
|
||||
(
|
||||
const polyMesh& mesh,
|
||||
Istream& msData
|
||||
const polyMesh&,
|
||||
Istream& msDataUnused
|
||||
);
|
||||
|
||||
|
||||
|
||||
@ -53,7 +53,7 @@ namespace Foam
|
||||
Foam::displacementLaplacianFvMotionSolver::displacementLaplacianFvMotionSolver
|
||||
(
|
||||
const polyMesh& mesh,
|
||||
Istream& msData
|
||||
Istream&
|
||||
)
|
||||
:
|
||||
fvMotionSolver(mesh),
|
||||
|
||||
@ -101,8 +101,8 @@ public:
|
||||
//- Construct from polyMesh and data stream
|
||||
displacementLaplacianFvMotionSolver
|
||||
(
|
||||
const polyMesh& mesh,
|
||||
Istream& msData
|
||||
const polyMesh&,
|
||||
Istream& msDataUnused
|
||||
);
|
||||
|
||||
|
||||
|
||||
@ -93,9 +93,10 @@ public:
|
||||
|
||||
// Constructors
|
||||
|
||||
//- Construct from polyMesh and data stream (provides component)
|
||||
velocityComponentLaplacianFvMotionSolver
|
||||
(
|
||||
const polyMesh& mesh,
|
||||
const polyMesh&,
|
||||
Istream& msData
|
||||
);
|
||||
|
||||
|
||||
@ -50,7 +50,7 @@ namespace Foam
|
||||
Foam::velocityLaplacianFvMotionSolver::velocityLaplacianFvMotionSolver
|
||||
(
|
||||
const polyMesh& mesh,
|
||||
Istream& msData
|
||||
Istream&
|
||||
)
|
||||
:
|
||||
fvMotionSolver(mesh),
|
||||
|
||||
@ -88,7 +88,11 @@ public:
|
||||
// Constructors
|
||||
|
||||
//- Construct from polyMesh and data stream
|
||||
velocityLaplacianFvMotionSolver(const polyMesh& mesh, Istream& msData);
|
||||
velocityLaplacianFvMotionSolver
|
||||
(
|
||||
const polyMesh&,
|
||||
Istream& msDataUnused
|
||||
);
|
||||
|
||||
|
||||
// Destructor
|
||||
|
||||
Reference in New Issue
Block a user