MoDeNa  1.0
Software framework facilitating sequential multi-scale modelling
TSEqn.H
Go to the documentation of this file.
1 
6 {
8 
9  fvScalarMatrix TSEqn
10  (
11  fvm::ddt(TS)
12  + fvm::div(phi,TS)
13  + fvm::SuSp(expImpSource,TS)
14  - fvm::div(alpha1phir,TS)
15  - fvm::laplacian (thermalDiffusivity, TS)
16  == TSSource
17  );
18 
19  TSEqn.relax();
20  TSEqn.solve();
21 }
22 ///@endcond