Index: DamEngine/trunk/src/Deltares.DamEngine.Interface/FillXmlOutputFromDam.cs =================================================================== diff -u -r6097 -r6109 --- DamEngine/trunk/src/Deltares.DamEngine.Interface/FillXmlOutputFromDam.cs (.../FillXmlOutputFromDam.cs) (revision 6097) +++ DamEngine/trunk/src/Deltares.DamEngine.Interface/FillXmlOutputFromDam.cs (.../FillXmlOutputFromDam.cs) (revision 6109) @@ -494,6 +494,19 @@ // RelativeCalculationPathName = timestepEntry.RelativeCalculationPathName, // StochastValue = stochastValue }; + if (timestepEntry.BishopCircleX.HasValue && timestepEntry.BishopCircleZ.HasValue && timestepEntry.BishopRadius.HasValue) + { + timeStep.BishopCalculatedSlipPlane = new BishopCalculatedSlipPlaneType + { + SafetyFactor = timestepEntry.Value, + Center = new Point2DType + { + X = (double) timestepEntry.BishopCircleX, + Z = (double) timestepEntry.BishopCircleZ + }, + Radius = (double) timestepEntry.BishopRadius + }; + } outputTimeSerie.Entries.TimeSerieEntry[timeSerieEntryIndex] = timeStep; timeSerieEntryIndex++; }