Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
3c5afbfc
Commit
3c5afbfc
authored
Feb 18, 2009
by
mattijs
Browse files
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
parents
0e2f77b1
a40999c5
Changes
179
Hide whitespace changes
Inline
Side-by-side
applications/solvers/DNS/dnsFoam/dnsFoam.C
View file @
3c5afbfc
...
...
@@ -55,8 +55,9 @@ int main(int argc, char *argv[])
Info
<<
nl
<<
"Starting time loop"
<<
endl
;
for
(
runTime
++
;
!
runTime
.
end
();
runTime
++
)
while
(
runTime
.
run
()
)
{
runTime
++
;
Info
<<
"Time = "
<<
runTime
.
timeName
()
<<
nl
<<
endl
;
# include "readPISOControls.H"
...
...
applications/solvers/basic/laplacianFoam/laplacianFoam.C
View file @
3c5afbfc
...
...
@@ -48,8 +48,9 @@ int main(int argc, char *argv[])
Info
<<
"
\n
Calculating temperature distribution
\n
"
<<
endl
;
for
(
runTime
++
;
!
runTime
.
end
();
runTime
++
)
while
(
runTime
.
run
()
)
{
runTime
++
;
Info
<<
"Time = "
<<
runTime
.
timeName
()
<<
nl
<<
endl
;
# include "readSIMPLEControls.H"
...
...
applications/solvers/basic/scalarTransportFoam/scalarTransportFoam.C
View file @
3c5afbfc
...
...
@@ -50,8 +50,9 @@ int main(int argc, char *argv[])
# include "CourantNo.H"
for
(
runTime
++
;
!
runTime
.
end
();
runTime
++
)
while
(
runTime
.
run
()
)
{
runTime
++
;
Info
<<
"Time = "
<<
runTime
.
timeName
()
<<
nl
<<
endl
;
# include "readSIMPLEControls.H"
...
...
applications/solvers/combustion/dieselFoam/dieselFoam.C
View file @
3c5afbfc
...
...
@@ -63,7 +63,7 @@ int main(int argc, char *argv[])
Info
<<
"
\n
Starting time loop
\n
"
<<
endl
;
while
(
runTime
.
run
())
while
(
runTime
.
run
())
{
# include "readPISOControls.H"
# include "compressibleCourantNo.H"
...
...
applications/solvers/compressible/rhoPorousSimpleFoam/rhoPorousSimpleFoam.C
View file @
3c5afbfc
...
...
@@ -51,8 +51,9 @@ int main(int argc, char *argv[])
Info
<<
"
\n
Starting time loop
\n
"
<<
endl
;
for
(
runTime
++
;
!
runTime
.
end
();
runTime
++
)
while
(
runTime
.
run
()
)
{
runTime
++
;
Info
<<
"Time = "
<<
runTime
.
timeName
()
<<
nl
<<
endl
;
# include "readSIMPLEControls.H"
...
...
applications/solvers/compressible/rhoSimpleFoam/rhoSimpleFoam.C
View file @
3c5afbfc
...
...
@@ -49,8 +49,9 @@ int main(int argc, char *argv[])
Info
<<
"
\n
Starting time loop
\n
"
<<
endl
;
for
(
runTime
++
;
!
runTime
.
end
();
runTime
++
)
while
(
runTime
.
run
()
)
{
runTime
++
;
Info
<<
"Time = "
<<
runTime
.
timeName
()
<<
nl
<<
endl
;
#include
"readSIMPLEControls.H"
...
...
applications/solvers/compressible/rhoSonicFoam/rhoSonicFoam.C
View file @
3c5afbfc
...
...
@@ -47,8 +47,9 @@ int main(int argc, char *argv[])
Info
<<
"
\n
Starting time loop
\n
"
<<
endl
;
for
(
runTime
++
;
!
runTime
.
end
();
runTime
++
)
while
(
runTime
.
run
()
)
{
runTime
++
;
Info
<<
"Time = "
<<
runTime
.
timeName
()
<<
nl
<<
endl
;
surfaceScalarField
phiv
...
...
applications/solvers/compressible/rhopSonicFoam/rhopSonicFoam.C
View file @
3c5afbfc
...
...
@@ -53,8 +53,9 @@ int main(int argc, char *argv[])
Info
<<
"
\n
Starting time loop
\n
"
<<
endl
;
for
(
runTime
++
;
!
runTime
.
end
();
runTime
++
)
while
(
runTime
.
run
()
)
{
runTime
++
;
Info
<<
"Time = "
<<
runTime
.
value
()
<<
nl
<<
endl
;
# include "readPISOControls.H"
...
...
applications/solvers/compressible/sonicDyMFoam/sonicDyMFoam.C
View file @
3c5afbfc
...
...
@@ -52,8 +52,9 @@ int main(int argc, char *argv[])
autoPtr
<
Foam
::
motionSolver
>
motionPtr
=
motionSolver
::
New
(
mesh
);
for
(
runTime
++
;
!
runTime
.
end
();
runTime
++
)
while
(
runTime
.
run
()
)
{
runTime
++
;
Info
<<
"Time = "
<<
runTime
.
timeName
()
<<
nl
<<
endl
;
#include
"readPISOControls.H"
...
...
applications/solvers/compressible/sonicFoam/sonicFoam.C
View file @
3c5afbfc
...
...
@@ -49,8 +49,9 @@ int main(int argc, char *argv[])
Info
<<
"
\n
Starting time loop
\n
"
<<
endl
;
for
(
runTime
++
;
!
runTime
.
end
();
runTime
++
)
while
(
runTime
.
run
()
)
{
runTime
++
;
Info
<<
"Time = "
<<
runTime
.
timeName
()
<<
nl
<<
endl
;
#include
"readPISOControls.H"
...
...
applications/solvers/compressible/sonicLiquidFoam/sonicLiquidFoam.C
View file @
3c5afbfc
...
...
@@ -50,8 +50,9 @@ int main(int argc, char *argv[])
Info
<<
"
\n
Starting time loop
\n
"
<<
endl
;
for
(
runTime
++
;
!
runTime
.
end
();
runTime
++
)
while
(
runTime
.
run
()
)
{
runTime
++
;
Info
<<
"Time = "
<<
runTime
.
timeName
()
<<
nl
<<
endl
;
# include "readPISOControls.H"
...
...
applications/solvers/electromagnetics/electrostaticFoam/electrostaticFoam.C
View file @
3c5afbfc
...
...
@@ -47,8 +47,9 @@ int main(int argc, char *argv[])
Info
<<
"
\n
Starting iteration loop
\n
"
<<
endl
;
for
(
runTime
++
;
!
runTime
.
end
();
runTime
++
)
while
(
runTime
.
run
()
)
{
runTime
++
;
Info
<<
"Iteration = "
<<
runTime
.
timeName
()
<<
nl
<<
endl
;
solve
...
...
applications/solvers/electromagnetics/mhdFoam/mhdFoam.C
View file @
3c5afbfc
...
...
@@ -71,8 +71,9 @@ int main(int argc, char *argv[])
Info
<<
nl
<<
"Starting time loop"
<<
endl
;
for
(
runTime
++
;
!
runTime
.
end
();
runTime
++
)
while
(
runTime
.
run
()
)
{
runTime
++
;
# include "readPISOControls.H"
# include "readBPISOControls.H"
...
...
applications/solvers/financial/financialFoam/financialFoam.C
View file @
3c5afbfc
...
...
@@ -55,8 +55,9 @@ int main(int argc, char *argv[])
Info
<<
"Starting time loop
\n
"
<<
endl
;
for
(
runTime
++
;
!
runTime
.
end
();
runTime
++
)
while
(
runTime
.
run
()
)
{
runTime
++
;
delta
==
fvc
::
grad
(
V
)().
component
(
Foam
::
vector
::
X
);
solve
...
...
applications/solvers/heatTransfer/buoyantBoussinesqFoam/Make/files
deleted
100644 → 0
View file @
0e2f77b1
buoyantBoussinesqFoam.C
EXE = $(FOAM_APPBIN)/buoyantBoussinesqFoam
applications/solvers/heatTransfer/buoyantBoussinesqPisoFoam/Make/files
0 → 100644
View file @
3c5afbfc
buoyantBoussinesqPisoFoam.C
EXE = $(FOAM_APPBIN)/buoyantBoussinesqPisoFoam
applications/solvers/heatTransfer/buoyantBoussinesqFoam/Make/options
→
applications/solvers/heatTransfer/buoyantBoussinesq
Piso
Foam/Make/options
View file @
3c5afbfc
File moved
applications/solvers/heatTransfer/buoyantBoussinesqFoam/TEqn.H
→
applications/solvers/heatTransfer/buoyantBoussinesq
Piso
Foam/TEqn.H
View file @
3c5afbfc
File moved
applications/solvers/heatTransfer/buoyantBoussinesqFoam/UEqn.H
→
applications/solvers/heatTransfer/buoyantBoussinesq
Piso
Foam/UEqn.H
View file @
3c5afbfc
File moved
applications/solvers/heatTransfer/buoyantBoussinesqFoam/buoyantBoussinesqFoam.C
→
applications/solvers/heatTransfer/buoyantBoussinesq
Piso
Foam/buoyantBoussinesq
Piso
Foam.C
View file @
3c5afbfc
...
...
@@ -23,10 +23,10 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Application
buoyantBoussinesq
Simple
Foam
buoyantBoussinesq
Piso
Foam
Description
Steady-state
solver for buoyant, turbulent flow of incompressible fluids
Transient
solver for buoyant, turbulent flow of incompressible fluids
Uses the Boussinesq approximation:
\f[
...
...
@@ -69,8 +69,9 @@ int main(int argc, char *argv[])
Info
<<
"
\n
Starting time loop
\n
"
<<
endl
;
for
(
runTime
++
;
!
runTime
.
end
();
runTime
++
)
while
(
runTime
.
run
()
)
{
runTime
++
;
Info
<<
"Time = "
<<
runTime
.
timeName
()
<<
nl
<<
endl
;
# include "readTimeControls.H"
...
...
Prev
1
2
3
4
5
…
9
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment