File tree Expand file tree Collapse file tree 1 file changed +7
-21
lines changed
applications/solvers/dfLowMachFoam Expand file tree Collapse file tree 1 file changed +7
-21
lines changed Original file line number Diff line number Diff line change @@ -56,30 +56,19 @@ time_monitor_corrDiff += double(end - start) / double(CLOCKS_PER_SEC);
5656
5757 fvScalarMatrix YiEqn
5858 (
59- (turbName == " laminar" )
60- ?
61- (
6259 fvm::ddt (rho, Yi)
63- + mvConvection->fvmDiv (phi, Yi)
64- + mvConvection->fvmDiv (phiUc, Yi)
65- ==
60+ +
6661 (
67- splitting
68- ? fvm::laplacian ( DEff () , Yi)
69- : ( fvm::laplacian ( DEff (), Yi) + combustion-> R (Yi) )
62+ turbName == " laminar "
63+ ? (mvConvection-> fvmDiv (phi, Yi) + mvConvection-> fvmDiv (phiUc , Yi) )
64+ : mvConvection-> fvmDiv (phi, Yi )
7065 )
71- )
72- :
73- (
74- fvm::ddt (rho, Yi)
75- + mvConvection->fvmDiv (phi, Yi)
7666 ==
7767 (
7868 splitting
79- ? fvm::laplacian (DEff (), Yi)
80- : (fvm::laplacian (DEff (), Yi) + combustion->R (Yi))
81- )
82- )
69+ ? fvm::laplacian (DEff (), Yi)
70+ : (fvm::laplacian (DEff (), Yi) + combustion->R (Yi))
71+ )
8372 );
8473
8574 YiEqn.relax ();
@@ -88,9 +77,6 @@ time_monitor_corrDiff += double(end - start) / double(CLOCKS_PER_SEC);
8877
8978 Yi.max (0.0 );
9079 Yt += Yi;
91-
92-
93-
9480 }
9581 }
9682
You can’t perform that action at this time.
0 commit comments