repo.or.cz
/
OpenFOAM-2.0.x.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git]
/
applications
/
solvers
/
incompressible
/
simpleFoam
/
windSimpleFoam
/
UEqn.H
blob
45fc95065b15b4bf90adcfda99bfa5b196352134
1
// Solve the Momentum equation
2
3
tmp<fvVectorMatrix> UEqn
4
(
5
fvm::div(phi, U)
6
+ turbulence->divDevReff(U)
7
);
8
9
// Add resistance on the actuation disks
10
actuationDisks.addSu(UEqn());
11
12
UEqn().relax();
13
14
solve(UEqn() == -fvc::grad(p));