| 12 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // |
| 13 | |
| 14 | void writePatchGraph |
| 15 | ( |
| 16 | const volScalarField& vsf, |
| 17 | const label patchLabel, |
| 18 | const direction d, |
| 19 | const word& graphFormat |
| 20 | ) |
| 21 | { |
| 22 | graph |
| 23 | ( |
| 24 | vsf.name(), |
| 25 | "position", |
| 26 | vsf.name(), |
| 27 | vsf.mesh().boundary()[patchLabel].Cf().component(d), |
| 28 | vsf.boundaryField()[patchLabel] |
| 29 | ).write(vsf.time().timePath()/vsf.name(), graphFormat); |
| 30 | } |
| 31 | |
| 32 | |
| 33 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // |