| 84 | // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // |
| 85 | |
| 86 | bool Foam::functionObjects::cloudInfo::read(const dictionary& dict) |
| 87 | { |
| 88 | regionFunctionObject::read(dict); |
| 89 | |
| 90 | logFiles::resetNames(dict.lookup("clouds")); |
| 91 | |
| 92 | Info<< type() << " " << name() << ": "; |
| 93 | if (names().size()) |
| 94 | { |
| 95 | Info<< "applying to clouds:" << nl; |
| 96 | forAll(names(), i) |
| 97 | { |
| 98 | Info<< " " << names()[i] << nl; |
| 99 | } |
| 100 | Info<< endl; |
| 101 | } |
| 102 | else |
| 103 | { |
| 104 | Info<< "no clouds to be processed" << nl << endl; |
| 105 | } |
| 106 | |
| 107 | return true; |
| 108 | } |
| 109 | |
| 110 | |
| 111 | bool Foam::functionObjects::cloudInfo::execute() |
no test coverage detected