| 242 | // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // |
| 243 | |
| 244 | bool Foam::functionObjects::interfaceHeight::read(const dictionary& dict) |
| 245 | { |
| 246 | dict.readIfPresent("alpha", alphaName_); |
| 247 | dict.readIfPresent("liquid", liquid_); |
| 248 | dict.lookup("locations") >> locations_; |
| 249 | dict.readIfPresent("interpolationScheme", interpolationScheme_); |
| 250 | |
| 251 | return true; |
| 252 | } |
| 253 | |
| 254 | |
| 255 | bool Foam::functionObjects::interfaceHeight::execute() |
no test coverage detected