| 55 | // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // |
| 56 | |
| 57 | void Foam::Function1Types::ramp::writeData(Ostream& os) const |
| 58 | { |
| 59 | Function1<scalar>::writeData(os); |
| 60 | os << token::END_STATEMENT << nl; |
| 61 | os << indent << word(this->name() + "Coeffs") << nl; |
| 62 | os << indent << token::BEGIN_BLOCK << incrIndent << nl; |
| 63 | os.writeKeyword("start") << start_ << token::END_STATEMENT << nl; |
| 64 | os.writeKeyword("duration") << duration_ << token::END_STATEMENT << nl; |
| 65 | os << decrIndent << indent << token::END_BLOCK << endl; |
| 66 | } |
| 67 | |
| 68 | |
| 69 | // ************************************************************************* // |
no test coverage detected