FreeFOAM The Cross-Platform CFD Toolkit
liftDragCoeffs.H
Go to the documentation of this file.
3 
6 
7  if (dragPhase == "b")
8  {
9  volScalarField Kb = dragb->K(magUr);
10  K = Kb;
11  }
12  else if (dragPhase == "blended")
13  {
14  volScalarField Kb = dragb->K(magUr);
15  K = (beta*Ka + alpha*Kb);
16  }
17 
19 
20 // ************************ vim: set sw=4 sts=4 et: ************************ //