Hello,
I'm using the panicDumpFunctionObject and it works perfectly except one thing.
In my case I'm simulating rain with OpenFOAM 4.1 and the reactingParcelFilmFoam.
So I have some Parcels flying around.
When the panicDump gets activated, one field doesn't get written:
$TIME/uniform/lagrangian/reactingCloud1/reactingCloud1OutputProperties
If I restart the simulation, this information is missing and some injectionModels (e.g coneInjection) get problems...
I think it's a small Bug. I can provide a TestCase if you neet one.
It would be quite similar to the HotBoxes-Tutorial
Hi!
I'm afraid that this is not my fault: panicDump can only write things that registered with the mesh and are set to
AUTO_WRITE
. The field you're refering to is written during evolveCloud and not set toAUTO_WRITE
.Fix would be to force the write option of this dictionary to
AUTO_WRITE
. I think there is a function object for this. But I can't remember if in OpenFOAM or in swakI'll have a look
Bernhard
Hey,
thanks a lot for the answer!
I didn't know that this options exist. I will look for it..