|
[Sponsors] |
January 31, 2017, 07:00 |
readPISOControls.H
|
#1 |
New Member
Marcelo Matos Martins
Join Date: Mar 2010
Location: Joinville, Santa Catarina, Brazil
Posts: 10
Rep Power: 16 |
Hello,
I tried to use the old solver developed on openfoam 1.4 and now I use openfoam 4.0 and when I am compling the openfoam asks the header "readPISOControls.H". But I can't find this header on openfoam. Can someone help me? Thanks Demaram |
|
January 31, 2017, 07:58 |
|
#2 |
Senior Member
Kevin van As
Join Date: Sep 2014
Location: TU Delft, The Netherlands
Posts: 252
Rep Power: 21 |
I don't think you need it.
Your solver calls: Code:
while (piso.loop()) Code:
bool Foam::pimpleControl::loop() { read(); (...) } Code:
void Foam::pimpleControl::read() { solutionControl::read(false); // Read solution controls const dictionary& pimpleDict = dict(); nCorrPIMPLE_ = pimpleDict.lookupOrDefault<label>("nOuterCorrectors", 1); nCorrPISO_ = pimpleDict.lookupOrDefault<label>("nCorrectors", 1); turbOnFinalIterOnly_ = pimpleDict.lookupOrDefault<Switch>("turbOnFinalIterOnly", true); } |
|
January 31, 2017, 08:09 |
|
#3 |
New Member
Marcelo Matos Martins
Join Date: Mar 2010
Location: Joinville, Santa Catarina, Brazil
Posts: 10
Rep Power: 16 |
Thanks for your reply ...
But, what I would like to know if there was some replacements or changes name of "readPISOControls.H" for some others headers. Thanks Demaram |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
replacement of readPISOControls.H on OpenFOAM 4 | crenaudo | OpenFOAM Programming & Development | 0 | September 27, 2016 10:27 |